usehooks-ts-demo/pages/index.tsx

10 lines
215 B
TypeScript
Raw Permalink Normal View History

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