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