Files
web/app/[lang]/(test)/test/page.tsx
Simon Emanuelsson b130ce11c6 feat: add cypress
2024-02-29 17:52:29 +01:00

16 lines
249 B
TypeScript

import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Hello World",
}
export default function HelloWorldTestPage() {
return (
<main>
<header>
<h1>Hello World!</h1>
</header>
</main>
)
}