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, ReferenceLine } from 'recharts'; import { data3 } from './sampleData'; const theme = createMuiTheme(ThemePallete.greenTheme); const color = ({ primary: theme.palette.primary.main, secondary: theme.palette.secondary.main, }); function BarPositiveNegative() { return ( ); } export default BarPositiveNegative;