import SortableTable from "../../_components/Table"; export default async () => { const columns = [ { header: "Station", accessorKey: "publicId", }, { header: "Einsatz Start", accessorKey: "firstname", }, { header: "Einsatz Ende", accessorKey: "lastname", }, { header: "Flugzeit", accessorKey: "email", }, ]; const data: any[] = [ { publicId: "Station 1", firstname: "01.01.2021 12:00", lastname: "01.01.2021 13:04", email: "01h 04m", }, { publicId: "Station 1", firstname: "01.01.2021 12:00", lastname: "01.01.2021 13:04", email: "01h 04m", }, { publicId: "Station 1", firstname: "01.01.2021 12:00", lastname: "01.01.2021 13:04", email: "01h 04m", }, { publicId: "Station 1", firstname: "01.01.2021 12:00", lastname: "01.01.2021 13:04", email: "01h 04m", }, { publicId: "Station 1", firstname: "01.01.2021 12:00", lastname: "01.01.2021 13:04", email: "01h 04m", }, ]; return ( <> ); };