Components
Loading preview...
here is a bar stac
npx shadcn@latest add https://21st.dev/r/airbnb/bar-stack
import { BarStackChart } from "@/components/ui/bar-stack";
const DemoBarStackChart = () => {
const width = 800;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<BarStackChart width={width} height={height} events={true} />
</div>
);
};
export { DemoBarStackChart };