Chapter 4 - add routers for dashboard pages

This commit is contained in:
2023-12-27 14:17:41 +01:00
parent eb493e7893
commit 8b8b67b62c
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export default function CustomersPage() {
return <p>Customers page</p>
}

View File

@@ -0,0 +1,3 @@
export default function InvoicesPage() {
return <p>Invoices page</p>
}

3
app/dashboard/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function Page() {
return <p>Dashboard Page</p>;
}