import { useState } from 'react'; export const CreateTask = ({ onSubmit }) => { const [title, setTitle] = useState(''); return (
{ event.preventDefault(); onSubmit(title); setTitle(''); }} >
setTitle(e.target.value)} placeholder="What do you need to get done?" required />
); };