import * as React from "react"; import Box from "@mui/material/Box"; import TextField from "@mui/material/TextField"; const BookletInput = ({ setBookletInput, setDataFetched, bookletInput }) => { return ( :not(style)': { m: 1, width: '25ch' }, // }} // noValidate className="w-100" autoComplete="off" > { setBookletInput(e.target.value); setDataFetched(false); }} /> ); }; export default BookletInput;