UNPKG

react-awesome-slider

Version:

React Awesome Slider is a 60fps performant, extendable, highly customisable, production ready React Component that renders a media (image/video) gallery slider carousel.

19 lines (16 loc) 354 B
import React, { useContext } from 'react'; import { Context } from './context'; export default Component => { return props => { const [navigation, setNavigation] = useContext(Context); return ( <Component {...props} fullpage={{ navigation, navigate: setNavigation, }} /> ); }; };