import React, { useState } from 'react'; import styles from "./textinput.module.css"; function TextInput({ onTextChange }) { const [text, setText] = useState(''); function handleTextChange(event) { const newText = event.target.value; setText(newText); onTextChange(newText); } return (