import LineChart from './components/LineChart' import BarChart from './components/BarChart' import DoughnutChart from './components/DoughnutChart' import PieChart from './components/PieChart' import ScatterChart from './components/ScatterChart' import StackBarChart from './components/StackBarChart' import Datepicker from "react-tailwindcss-datepicker"; import { useState } from 'react' function Charts(){ const [dateValue, setDateValue] = useState({ startDate: new Date(), endDate: new Date() }); const handleDatePickerValueChange = (newValue) => { console.log("newValue:", newValue); setDateValue(newValue); } return( <> {/** ---------------------- Different charts ------------------------- */}
) } export default Charts