UNPKG

strapi-plugin-comments

Version:
8 lines (7 loc) 174 B
import { FC } from 'react'; import { Comment } from '../../api/schemas'; type Props = { readonly item: Comment; }; export declare const CommentRow: FC<Props>; export {};