11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
|
import { Button } from "@nextui-org/button";
|
||
|
|
||
|
export default function Page() {
|
||
|
return (
|
||
|
<center>
|
||
|
|
||
|
<Button color={"primary"}>Love me!</Button>
|
||
|
</center>
|
||
|
)
|
||
|
}
|