import React, { forwardRef } from 'react'; import ScrollableContentWrapper from '../../components/ScrollableContentWrapper'; const ScrollerWithCustomProps = forwardRef(function ScrollerWithCustomProps(props, ref) { return (
} renderTrackHorizontal={(props) =>
} /> ); }); export default ScrollerWithCustomProps;