|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
357 bytes
|
| Line | |
|---|
| 1 | import { createSelector } from 'reselect';
|
|---|
| 2 | import { selectChartOffsetInternal } from './selectChartOffsetInternal';
|
|---|
| 3 | export var selectChartOffset = createSelector([selectChartOffsetInternal], offsetInternal => {
|
|---|
| 4 | return {
|
|---|
| 5 | top: offsetInternal.top,
|
|---|
| 6 | bottom: offsetInternal.bottom,
|
|---|
| 7 | left: offsetInternal.left,
|
|---|
| 8 | right: offsetInternal.right
|
|---|
| 9 | };
|
|---|
| 10 | }); |
|---|
Note:
See
TracBrowser
for help on using the repository browser.