import { useState } from 'react'; interface Props {} export default function ChatTextField(props: Props) { const [value, setValue] = useState(''); const [showEmojis, setShowEmojis] = useState(false); return (
setValue(e.target.value)} placeholder="Type a message here then hit ENTER" />
); }