Team oppgave og litt unit-testing

This commit is contained in:
Geir Okkenhaug Jerstad 2024-09-13 13:06:19 +02:00
parent fe625a2b6d
commit 29e6711d13
12 changed files with 526 additions and 47 deletions

View file

@ -0,0 +1,12 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}