mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
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>
|
|
)
|
|
}
|