mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b1222962f0
Changes: * use `dynamic` imports instead of `require` * update `recharts` dependency
13 lines
381 B
JavaScript
13 lines
381 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
export default dynamic({
|
|
modules: () => ({
|
|
BarChart: import('recharts').then(({ BarChart }) => BarChart),
|
|
Bar: import('recharts').then(({ Bar }) => Bar)
|
|
}),
|
|
render: (props, { BarChart, Bar }) =>
|
|
<BarChart width={props.width} height={props.height} data={props.data}>
|
|
<Bar dataKey='uv' fill='#8884d8' />
|
|
</BarChart>
|
|
})
|