@mui/x-charts
Version:
The community edition of the charts components (MUI X).
16 lines • 328 B
JavaScript
import * as React from 'react';
import { DrawingContext } from '../context/DrawingProvider';
export function useDrawingArea() {
const {
left,
top,
width,
height
} = React.useContext(DrawingContext);
return React.useMemo(() => ({
left,
top,
width,
height
}), [height, left, top, width]);
}