Dashboard Page
; +} diff --git a/src/app/task/dragtest/page.tsx b/src/app/task/dragtest/page.tsx new file mode 100644 index 0000000..b8f0fd8 --- /dev/null +++ b/src/app/task/dragtest/page.tsx @@ -0,0 +1,3 @@ +export default function Page() { + returnDashboard test
; +} diff --git a/src/lib/definitions.ts b/src/lib/definitions.ts index 16fad12..c5b29f1 100644 --- a/src/lib/definitions.ts +++ b/src/lib/definitions.ts @@ -1,15 +1,11 @@ import React from "react"; import {Dayjs} from "dayjs"; -export type Invoice = { - id: string; - customer_id: string; - amount: number; - date: string; - // In TypeScript, this is called a string union type. - // It means that the "status" property can only be one of the two strings: 'pending' or 'paid'. - status: 'pending' | 'paid'; -}; +export type Request