13 lines
193 B
TypeScript
13 lines
193 B
TypeScript
import { Button } from "@/components/ui/button";
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<div>
|
|
<Button>Blank page with nextjs + Shadcn ui</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|