1 2 3 4 5 6 7 8 9 10import { ChartArea } from "@/components/custom/chart-area"; export default function Home() { return ( <div className="container mx-auto my-10"> <ChartArea /> </div> ); }
1 2 3 4 5 6 7 8 9 10
import { ChartArea } from "@/components/custom/chart-area"; export default function Home() { return ( <div className="container mx-auto my-10"> <ChartArea /> </div> ); }