import React from "react"; import Grid from "@mui/material/Grid"; import Card from "@mui/material/Card"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import { BarChart, Bar, XAxis, Tooltip, ResponsiveContainer } from "recharts"; const data = [ { name: "Sat", income: 24, }, { name: "Sun", income: 13, }, { name: "Mon", income: 98, }, { name: "Tue", income: 39, }, { name: "Wed", income: 48, }, { name: "Thu", income: 38, }, { name: "Fri", income: 43, }, ]; const NetIncome = () => { return ( <> Net Income $438.5k ); }; export default NetIncome;