'use client'; import { Area, AreaChart, CartesianGrid, ResponsiveContainer, Tooltip, XAxis, YAxis, } from 'recharts'; import type { TodayChartBucket } from '@/types/today'; import { TODAY_CHART_AXIS_COLOR, TODAY_CHART_GRID_COLOR, TODAY_CHART_PRIMARY_COLOR, TODAY_CHART_TOOLTIP_STYLE, } from '@/components/today/chart-theme'; interface TodayAreaChartProps { data: TodayChartBucket[]; } export function TodayAreaChart({ data }: TodayAreaChartProps) { return ( String(label)} /> ); }