source: node_modules/recharts/lib/state/polarOptionsSlice.js

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

Added visualizations

  • Property mode set to 100644
File size: 607 bytes
RevLine 
[a762898]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.updatePolarOptions = exports.polarOptionsReducer = void 0;
7var _toolkit = require("@reduxjs/toolkit");
8var initialState = null;
9var reducers = {
10 updatePolarOptions: (_state, action) => {
11 return action.payload;
12 }
13};
14var polarOptionsSlice = (0, _toolkit.createSlice)({
15 name: 'polarOptions',
16 initialState,
17 reducers
18});
19var {
20 updatePolarOptions
21} = polarOptionsSlice.actions;
22exports.updatePolarOptions = updatePolarOptions;
23var polarOptionsReducer = exports.polarOptionsReducer = polarOptionsSlice.reducer;
Note: See TracBrowser for help on using the repository browser.