File size: 231 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
'use client';
import dynamic from 'next/dynamic';
import { styled } from '@mui/system';
const ApexChart = dynamic(() => import('react-apexcharts'), { ssr: false, loading: () => null });
export const Chart = styled(ApexChart)``;
|