Chapter 4 - add routers for dashboard pages
This commit is contained in:
3
app/dashboard/customers/page.tsx
Normal file
3
app/dashboard/customers/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function CustomersPage() {
|
||||
return <p>Customers page</p>
|
||||
}
|
||||
3
app/dashboard/invoices/page.tsx
Normal file
3
app/dashboard/invoices/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function InvoicesPage() {
|
||||
return <p>Invoices page</p>
|
||||
}
|
||||
3
app/dashboard/page.tsx
Normal file
3
app/dashboard/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Page() {
|
||||
return <p>Dashboard Page</p>;
|
||||
}
|
||||
Reference in New Issue
Block a user