import {PostProps} from "./Post.props"; import styles from "./Post.module.css" import cn from "classnames"; export const Post = ({className, title="", content="", ...props}: PostProps): JSX.Element => { return(

{title}

{content}

); }