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