UNPKG

react-help-desk-tailwindcss-ts

Version:

Help desk component for React with Tailwindcss in TypeScript

17 lines (16 loc) 392 B
import { default as React } from 'react'; interface FAQProps { json: { articles?: Array<{ title: string; body: string; }>; categories?: Array<any>; }; onArticleRating?: (rating: number) => void; search?: boolean; searchLabel?: string; noResultsText?: string; } declare const FAQ: React.FC<FAQProps>; export default FAQ;