10 lines
357 B
JavaScript
10 lines
357 B
JavaScript
import { createSelector } from 'reselect';
|
|
import { selectChartOffsetInternal } from './selectChartOffsetInternal';
|
|
export var selectChartOffset = createSelector([selectChartOffsetInternal], offsetInternal => {
|
|
return {
|
|
top: offsetInternal.top,
|
|
bottom: offsetInternal.bottom,
|
|
left: offsetInternal.left,
|
|
right: offsetInternal.right
|
|
};
|
|
}); |