import React from "react"; import { Box } from "@mui/material"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); const RevenueReport = () => { const series = [ { name: "Earning", data: [80, 50, 30, 40, 100, 20, 35, 75, 45, 55, 65, 85,], }, { name: "Expenses", data: [20, 30, 40, 80, 20, 80, 15, 32, 70, 38, 60, 76,], }, ]; const options = { chart: { toolbar: { show: false, }, dropShadow: { enabled: true, blur: 1, left: 1, top: 1, }, }, stroke: { width: 2, }, colors: ["#757FEF", "#FF8A65"], fill: { opacity: 0.1, }, markers: { size: 5, }, xaxis: { categories: [ "January", "Fubruary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", ], }, }; return ( <> Revenue Report ); }; export default RevenueReport;