Components
Loading preview...
dots data visualisation
npx shadcn@latest add https://21st.dev/r/airbnb/dots
import { DotsChart } from "@/components/ui/dots";
const DemoDotsChart = () => {
const width = 700;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<DotsChart width={width} height={height} showControls={true} />
</div>
);
};
export { DemoDotsChart };