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
410 B
JavaScript
13 lines
410 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
export default dynamic({
|
|
modules: () => ({
|
|
LineChart: import('recharts').then(({ LineChart }) => LineChart),
|
|
Line: import('recharts').then(({ Line }) => Line)
|
|
}),
|
|
render: (props, { LineChart, Line }) =>
|
|
<LineChart width={props.width} height={props.height} data={props.data}>
|
|
<Line type='monotone' dataKey='uv' stroke='#8884d8' />
|
|
</LineChart>
|
|
})
|