usehooks-ts-demo/pages/index.tsx
2023-08-21 17:11:33 +08:00

10 lines
215 B
TypeScript

import { Button } from "@nextui-org/react"
export default function Page() {
return (
<>
<Button> test</Button>
<h1 className="bg-red-500">Hello, Next.js!</h1>
</>
)
}