import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { AreaChart, Area, XAxis, YAxis, CartesianGrid, Tooltip } from 'recharts'; import { green } from '@material-ui/core/colors'; import { data1 } from './sampleData'; const theme = createMuiTheme(ThemePallete.blueTheme); const color = ({ primary: theme.palette.primary.main, primarydark: theme.palette.primary.dark, secondary: theme.palette.secondary.main, secondarydark: theme.palette.secondary.dark, third: green[500], thirddark: green[900], }); function AreaStacked() { return ( ); } export default AreaStacked;