@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 463 B
TypeScript
import React, { CSSProperties, HTMLAttributes } from 'react';
import { Post } from "../../../../../interfaces/types";
export type Props = {
post?: Post;
id?: string | number;
className?: string;
style?: CSSProperties;
bannedWords?: string[];
value?: string;
onChange?: (v: string) => void;
} & HTMLAttributes<HTMLDivElement>;
declare const PostCard: ({ post, className }: Props) => React.JSX.Element;
export { PostCard };