'use client'; import { Santa } from '@components/custom/santa'; interface ChartProps { data: { name: string; total: number; }[]; } export function Chart({ ...props }: ChartProps) { return (