UNPKG

devexpress-reporting-react

Version:

DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.

11 lines (10 loc) 300 B
import React from 'react'; import { updateZoomBinding } from '@devexpress/analytics-core/core/_updateZoomBinding'; const dxZoom = (value) => { const ref = React.useRef(); React.useEffect(() => { updateZoomBinding(ref.current, value); }); return ref; }; export default dxZoom;