import React from 'react'; import { createMuiTheme } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { ScatterChart, Scatter, XAxis, YAxis, ZAxis, CartesianGrid, Tooltip, Legend } from 'recharts'; import { data8, data9 } from './sampleData'; const theme = createMuiTheme(ThemePallete.greenTheme); const color = ({ primary: theme.palette.primary.main, secondary: theme.palette.secondary.main, }); function ScatterMultiple() { return ( ); } export default ScatterMultiple;