Files
Airframe-React/app/components/Recharts/PolarGrid.js
2019-08-15 00:54:44 +02:00

13 lines
265 B
JavaScript
Executable File

import { PolarGrid } from 'recharts';
import styleConfig from './config';
class CustomPolarGrid extends PolarGrid {
static defaultProps = {
...PolarGrid.defaultProps,
...styleConfig.polarGrid
}
}
export { CustomPolarGrid as PolarGrid };