UNPKG

react-spotlight-tour-cct

Version:

A lightweight and customizable React component for creating guided tours in your web applications. Highlight elements and display step-by-step instructions to guide users through your app's features.

8 lines (7 loc) 146 B
export interface TourStep { id: string; content: string; } export interface TourGuidePopupProps { steps: TourStep[]; }