CoastalCommitsPastes/client/app/(posts)/new/components/description/index.tsx
2022-11-16 00:49:12 -08:00

26 lines
558 B
TypeScript

import Input from "@components/input"
import { ChangeEvent, memo } from "react"
import styles from "../post.module.css"
type props = {
onChange: (e: ChangeEvent<HTMLInputElement>) => void
description: string
}
const Description = ({ onChange, description }: props) => {
return (
<div className={styles.description}>
<Input
value={description || ""}
onChange={onChange}
label="Description"
maxLength={256}
width="100%"
placeholder="An optional description of your post"
/>
</div>
)
}
export default memo(Description)