import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts'; import { data1 } from './sampleData'; const theme = createMuiTheme(ThemePallete.cyanTheme); const color = ({ primary: theme.palette.primary.main, secondary: theme.palette.secondary.main, }); function LineVertical() { return ( ); } export default LineVertical;