step-guide-react
Version:
<div class="align" ><h1>React Tour-Guide</h1></div>
15 lines (14 loc) • 331 B
TypeScript
import { FC } from "react";
import "./StepGuide.css";
export interface StepGuideProps {
isOpen: boolean;
onClose: () => void;
totalSteps: number;
stepsConfig: {
title: string;
content: string;
target: string;
}[];
}
declare const StepGuide: FC<StepGuideProps>;
export default StepGuide;