Components
Loading preview...
here is example of dendrogram
npx shadcn@latest add https://21st.dev/r/airbnb/dendrogramimport { DendrogramChart } from "@/components/ui/dendrogram";
const DemoDendrogramChart = () => {
const width = 600;
const height = 400;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<DendrogramChart width={width} height={height} />
</div>
);
};
export { DemoDendrogramChart };