mirror of
https://github.com/michivonah/nextjs.git
synced 2025-12-22 22:16:28 +01:00
create/import dashboard app project from course template
This commit is contained in:
parent
820ed27a47
commit
6d6dd37f72
47 changed files with 7370 additions and 0 deletions
11
dashboard-app-course/app/layout.tsx
Normal file
11
dashboard-app-course/app/layout.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue