Components
Loading preview...
here is fully customizable link types of data
npx shadcn@latest add https://21st.dev/r/airbnb/linktypesimport { TreeChart } from "@/components/ui/linktypes";
const DemoTreeChart = () => {
const width = 800;
const height = 600;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<TreeChart width={width} height={height} />
</div>
);
};
export { DemoTreeChart };