This commit is contained in:
shadcn
2026-01-20 21:53:00 +04:00
parent c5c08bb773
commit b5dff005f6

View File

@@ -1,6 +1,9 @@
import Link from "next/link"
import { Button } from "@/examples/base/ui/button"
export default function ButtonRender() {
return <Button render={<Link href="#" />}>Login</Button>
return (
<Button nativeButton={false} render={<a href="#" />}>
Login
</Button>
)
}