A React component to help you build beautiful guided tours that teach users
npm install react-toursA react library to build guided tours that encourage users to take action.
``
import React from 'react';
import { useGuidedTour, GuidedTourProvider, TourTarget } from 'react-guided-tour';
const TOUR_STEPS = ["first-step", "second-step"];
function Root() {
const { finishCurrentStep, startTour } = useGuidedTour();
React.useEffect(() => {
startTour(TOUR_STEPS);
}, []);
return (
content={Some step explanation here}
>
This is the first step
content={
export default () => (
);
``