12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import { Button } from "@nextui-org/button";
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
|
|
<Button>Click me</Button>
|
|
</section>
|
|
);
|
|
}
|