import { ChangeEvent, memo } from "react" import Input from "@components/input" import styles from "./title.module.css" const titlePlaceholders = [ "How to...", "Status update for ...", "My new project", "My new idea", "Let's talk about...", "What's up with ...", "I'm thinking about ..." ] const placeholder = titlePlaceholders[3] type props = { onChange: (e: ChangeEvent) => void title?: string } const Title = ({ onChange, title }: props) => { return (

Drift

) } export default memo(Title)