profil-next/app/layout.tsx
2022-11-21 10:51:39 +01:00

24 lines
394 B
TypeScript

import Link from 'next/link'
export default function RootLayout({
children
}: {
children: React.ReactNode
}): JSX.Element {
return (
<html>
<head />
<body>
<nav>
<Link href="/">
Home
</Link>
<Link href="/contact">
Contact Me
</Link>
</nav>
{children}
</body>
</html>
)
}