mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import "../styles/globals.scss";
|
|
import Nav from "./Nav";
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<body>
|
|
<Nav />
|
|
<main>{children}</main>
|
|
</body>
|
|
);
|
|
}
|