10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
import dynamic from 'next/dynamic';
|
|
import { styled } from '@mui/material/styles';
|
|
|
|
const ApexChart = dynamic(() => import('react-apexcharts'), {
|
|
ssr: false,
|
|
loading: () => null
|
|
});
|
|
|
|
export const Chart = styled(ApexChart)``;
|