Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
231 Bytes
'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)``;