8 lines
190 B
TypeScript
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 Marco</h1>
|
|
</main>
|
|
);
|
|
}
|