import { Label } from "@mui/icons-material"; import { TextField, Box } from "@mui/material"; const TextInputField = ({ placeholder, value, setValue }) => { return ( setValue(e.target.value)} /> ); }; export default TextInputField;