react-help-desk-tailwindcss-ts
Version:
Help desk component for React with Tailwindcss in TypeScript
15 lines (14 loc) • 321 B
TypeScript
import { default as React } from 'react';
interface Walkthrough {
title: string;
body: string;
videoUrl?: string;
}
interface TutorialsProps {
helpText?: string;
walkthroughs?: {
[key: string]: Walkthrough;
};
}
declare const Tutorials: React.FC<TutorialsProps>;
export default Tutorials;