UNPKG

react-disqus-components

Version:

react-disqus-components wrapper for official disqus web api

10 lines (9 loc) 235 B
import * as React from 'react'; export interface DisqusCommentProps { title: string; identifier: string; url: string; shortname: string; defer?: number; } export declare const Comment: React.FC<DisqusCommentProps>;