source: node_modules/recharts/es6/state/ReportPolarOptions.js@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 316 bytes
Line 
1import { useEffect } from 'react';
2import { useAppDispatch } from './hooks';
3import { updatePolarOptions } from './polarOptionsSlice';
4export function ReportPolarOptions(props) {
5 var dispatch = useAppDispatch();
6 useEffect(() => {
7 dispatch(updatePolarOptions(props));
8 }, [dispatch, props]);
9 return null;
10}
Note: See TracBrowser for help on using the repository browser.