import React, { Component } from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); class SimplePieChart extends Component { constructor(props) { super(props); this.state = { series: [44, 55, 13, 43, 22], options: { chart: { width: 380, type: "pie", }, labels: ["Team A", "Team B", "Team C", "Team D", "Team E"], responsive: [ { breakpoint: 480, options: { chart: { width: 200, }, legend: { position: "bottom", }, }, }, ], }, }; } render() { return ( <> Simple Pie Chart ); } } export default SimplePieChart;