devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
9 lines (8 loc) • 311 B
JavaScript
import React from 'react';
import { initializeSlideBinding } from 'devexpress-reporting/viewer/mobile/internal/_mobileBindings';
const useDxMobileSlide = (ref, options) => {
React.useEffect(() => {
return initializeSlideBinding(ref.current, options);
}, []);
};
export default useDxMobileSlide;