UNPKG

devexpress-reporting-react

Version:

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

7 lines (6 loc) 356 B
import React from 'react'; import { updatePreviewPageRendererBinding } from 'devexpress-reporting/viewer/internal/_bindings'; const useDxPreviewPageRenderer = (ref, options) => { React.useEffect(() => options && ref.current && updatePreviewPageRendererBinding(ref.current, options), [options, ref.current]); }; export default useDxPreviewPageRenderer;