import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { Radar, RadarChart, PolarGrid, PolarAngleAxis, PolarRadiusAxis, Legend } from 'recharts'; import { data7 } from './sampleData'; const theme = createMuiTheme(ThemePallete.redTheme); const color = ({ main: theme.palette.primary.main, maindark: theme.palette.primary.dark, secondary: theme.palette.secondary.main, secondarydark: theme.palette.secondary.dark, }); function DoubleRadar() { return ( ); } export default DoubleRadar;