mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
// app/page.tsx
|
|
import { Button } from "@nextui-org/react"
|
|
|
|
// import { NextUIProvider } from "@nextui-org/react";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div>
|
|
<Button>Click me</Button>
|
|
</div>
|
|
)
|
|
}
|