UNPKG

react-native-copilot

Version:

Make an interactive step by step tour guide for you react-native app

14 lines (10 loc) 244 B
// @flow import React from 'react'; type Props = { copilot: Object, }; const walkthroughable = WrappedComponent => ({ copilot, ...props }: Props) => <WrappedComponent {...copilot} {...props} />; export default walkthroughable;