UNPKG

react-help-desk-tailwindcss-ts

Version:

Help desk component for React with Tailwindcss in TypeScript

13 lines (12 loc) 317 B
import { default as React } from 'react'; interface ArticleProps { article: { title: string; body: string; }; className?: string; onArticleRating: (title: string, isUp: boolean) => void; onClose: () => void; } declare const Article: React.FC<ArticleProps>; export default Article;