7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen bg-beige text-black">
|
|
<h1>Hello World</h1>
|
|
</main>
|
|
);
|
|
} |