-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
A higher order component that allows a component that is being walked through to change based on what step the walkthrough is on.
import { connectWalkthrough } from 'react-help-desk';
const Map = ({ walkthrough }) => (
<div>
<GoogleMap>
{walkthrough.step == 1 && <Marker label="Example Marker" position={latLng} />}
{walkthrough.step == 2 && <DirectionsRenderer directions={directions} />}
</GoogleMap>
</div>
);
export default connectWalkthrough('my-component')(Map);Reactions are currently unavailable