mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-14 04:55:27 +00:00
feat: use structured output, import CSV, bugfixes
This commit is contained in:
11
app/import/csv/page.tsx
Normal file
11
app/import/csv/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ImportCSVTable } from "@/components/import/csv"
|
||||
import { getFields } from "@/data/fields"
|
||||
|
||||
export default async function CSVImportPage() {
|
||||
const fields = await getFields()
|
||||
return (
|
||||
<div className="flex flex-col gap-4 p-4">
|
||||
<ImportCSVTable fields={fields} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user