Components
Loading preview...
Here is magic button component
npx shadcn@latest add https://21st.dev/r/hari/button-8// This is a demo of a preview
import React, { useState } from "react";
import { Component } from "@/components/ui/button-8";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export default DemoOne;