Components
Loading preview...
here is treemap component
npx shadcn@latest add https://21st.dev/r/airbnb/treemap-chart// src/components/ui/treemap-chart-demo.tsx
import { TreemapChart } from "@/components/ui/treemap-chart";
const DemoTreemapChart = () => {
const width = 700;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<TreemapChart width={width} height={height} />
</div>
);
};
export { DemoTreemapChart };