oktopus/frontend/src/components/chart.js
Leandro Antônio Farias Machado d297fecc62 chore: create proj structure
2023-03-07 13:33:32 +00:00

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