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