Components
npx shadcn@latest add https://21st.dev/r/sean0205/buttonLoading preview...
import { Button } from "@/components/ui/button";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Button>Button</Button>
</div>
);
};
export { DemoOne };