10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { Button } from "./ui/button";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="h-screen w-full flex items-center justify-center">
|
|
<Button>Hello World</Button>
|
|
</main>
|
|
);
|
|
}
|