| '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)``; | |
| '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)``; | |