|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
304 bytes
|
| Line | |
|---|
| 1 | import { createSelector } from 'reselect';
|
|---|
| 2 | export var selectAllXAxes = createSelector(state => state.cartesianAxis.xAxis, xAxisMap => {
|
|---|
| 3 | return Object.values(xAxisMap);
|
|---|
| 4 | });
|
|---|
| 5 | export var selectAllYAxes = createSelector(state => state.cartesianAxis.yAxis, yAxisMap => {
|
|---|
| 6 | return Object.values(yAxisMap);
|
|---|
| 7 | }); |
|---|
Note:
See
TracBrowser
for help on using the repository browser.