8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
// ** Next Import
|
|
import dynamic from 'next/dynamic'
|
|
|
|
// ! To avoid 'Window is not defined' error
|
|
const ReactApexcharts = dynamic(() => import('react-apexcharts'), { ssr: false })
|
|
|
|
export default ReactApexcharts
|