mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 03:10:55 +00:00
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
|
|
};
|
|
}); |