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) 376 B
import React from 'react'; import { initializeMobileSearchBinding } from 'devexpress-reporting/viewer/mobile/internal/_mobileBindings'; const useDxMobileSearchBar = (options) => { const ref = React.useRef(); React.useEffect(() => { return initializeMobileSearchBinding(ref.current, options); }, []); return ref; }; export default useDxMobileSearchBar;