import { ChangeEvent, memo } from "react" import { Input } from "@geist-ui/core" import styles from "../post.module.css" type props = { onChange: (e: ChangeEvent) => void description?: string } const Description = ({ onChange, description }: props) => { return (
) } export default memo(Description)