mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 20:55:47 +00:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import Link from "next/link"
|
|
import { Button } from "@/examples/base/ui/button"
|
|
|
|
export default function ButtonRender() {
|
|
return <Button render={<Link href="#" />}>Login</Button>
|
|
}
|