UNPKG

react-utterances-github-comments

Version:

A lightweight React wrapper for Utterances GitHub comment system

12 lines (11 loc) 436 B
export type GithubCommentsProps = { repo: string; issueTerm: "pathname" | "url" | "title" | "og:title" | string; theme?: string; label?: string; titleText?: string; loadingText?: string; className?: string; }; declare const GithubComments: ({ repo, issueTerm, theme, label, titleText, loadingText, className, }: GithubCommentsProps) => import("react/jsx-runtime").JSX.Element; export default GithubComments;