examples/chart-bar.tsx
1import { ChartBar } from "@/components/wensity/chart";23const data = [4 { channel: "Jan", desktop: 186, mobile: 120 },5 { channel: "Feb", desktop: 205, mobile: 138 },6 { channel: "Mar", desktop: 174, mobile: 151 },7];89const config = {10 desktop: { label: "Desktop" },11 mobile: { label: "Mobile" },12};1314export default function Example() {15 return <ChartBar data={data} config={config} xKey="channel" />;16}