"use client" import { Chart, useChart } from "@chakra-ui/charts" import { Bar, BarChart, CartesianGrid, XAxis, YAxis } from "recharts" export const BarChartRange = () => { const chart = useChart({ data: [ { name: "UK", value: [10, 20] }, { name: "US", value: [15, 25] }, { name: "EU", value: [5, 18] }, { name: "JP", value: [12, 30] }, ], }) return ( ) }