Components
Loading preview...
FlowButton
npx shadcn@latest add https://21st.dev/r/xubohuah/flow-button// This is a demo of a preview
// That's what users will see in the preview
'use client';
import {FlowButton } from "@/components/ui/flow-button";
const FlowButtonDemo = () =>{
return (
<div className="flex min-h-screen items-center justify-center bg-gray-100 p-4">
<FlowButton text="Flow Button" />
</div>
);
}
export default { FlowButtonDemo };