import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { ComposedChart, Line, Area, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts'; import { green } from '@material-ui/core/colors'; import { data1 } from './sampleData'; const theme = createMuiTheme(ThemePallete.orangeTheme); const color = ({ main: theme.palette.primary.main, maindark: theme.palette.primary.dark, secondary: theme.palette.secondary.main, third: green[500], }); function CompossedLineBarArea() { return ( ); } export default CompossedLineBarArea;