import React from 'react'; import {withInfo} from '@storybook/addon-info'; import PercentageAreaChart from 'app/components/charts/percentageAreaChart'; const TOTAL = 6; export default { title: 'Charts/PercentageAreaChart', }; export const _PercentageAreaChart = withInfo('Stacked PercentageArea')(() => { const NOW = new Date().getTime(); const getValue = () => Math.round(Math.random() * 1000); const getDate = num => NOW - (TOTAL - num) * 86400000; return (

Percentage Area Charts Over Time

); }); _PercentageAreaChart.story = { name: 'PercentageAreaChart', };