// HomePage.js import React from 'react'; import { BarChart } from '@mui/x-charts/BarChart'; // Import BarChart component const Card = ({ index }) => { return (

INDEX {index}

{index}.

); }; const HomePage = () => { return (

Welcome to the Dashboard!

{/* Add BarChart component */}
); }; export default HomePage;