Files
web/app/[lang]/page.tsx
2024-02-07 11:58:54 +01:00

8 lines
108 B
TypeScript

export default async function Home() {
return (
<main>
<h1>Hello world!</h1>
</main>
);
}