Components
Loading preview...
Stacked areas chart
npx shadcn@latest add https://21st.dev/r/airbnb/stacked-areasimport { StackedAreasChart } from "@/components/ui/stacked-areas";
const DemoStackedAreasChart = () => {
const width = 800;
const height = 400;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<StackedAreasChart width={width} height={height} events={true} />
</div>
);
};
export { DemoStackedAreasChart };