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 { data1 } from './sampleData'; const theme = createMuiTheme(ThemePallete.redTheme); const color = ({ primary: theme.palette.primary.main, secondary: theme.palette.secondary.main, }); function BarSimple() { return ( ); } export default BarSimple;