Components
Loading preview...
here is a word cloud data
npx shadcn@latest add https://21st.dev/r/airbnb/word-cloud// src/components/ui/wordcloud-chart-demo.tsx
import { WordcloudChart } from "@/components/ui/word-cloud";
const DemoWordcloudChart = () => {
const width = 800;
const height = 400;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<WordcloudChart width={width} height={height} showControls={true} />
</div>
);
};
export { DemoWordcloudChart };