Files
my-app/app/page.tsx
T
2026-06-30 10:31:54 +00:00

8 lines
190 B
TypeScript

export default function Home() {
return (
<main className="flex min-h-screen items-center justify-center">
<h1 className="text-4xl font-bold">Hello World</h1>
</main>
);
}