Description:
Just another component to help create a beautiful guided tour (product walkthrough, app onboarding) in React applications.
How to use it:
1. Installation.
# NPM $ npm i simple-user-tips
2. Create a basic guided tour.
<Tips data={data}/>3. Define your data for the guided tour.
const data = [
{
img: "1.jpg",
title: "Step 1",
desc: "Description 1"
},
{
img: "2.jpg",
title: "Step 2",
desc: "Description 2"
},
{
img: "3.jpg",
title: "Step 3",
desc: "Description 3"
},
// ...
]





