![]() |
VOOZH | about |
TextField component is a complete form control including a label, input, and help text. Material UI for React has this component available for us and it is very easy to integrate.
Step 1: Create a React application using the following command:
npx create-react-app foldernameStep 2: After creating your project folder i.e. foldername, move to it using the following command:
cd foldernameStep 3: After creating the ReactJS application, Install the material-ui modules using the following command:
npm install @mui/materialProject Structure:
Example 1: In this example, we will create a text field application where the text that the user inputs is visible at the bottom of the TextField component. Please update App.js file as shown below
Step to Run Application: Run the application using the following command from the root directory of the project.
npm start
Output: Now open your browser and go to http://localhost:3000/, you will see the following output.
Example 2: In this example, we will create a text field application with a validation message that would show when the TextField is empty. Please update App.js file shown below
Steps to run the application:
npm start
Output:
Reference: https://mui.com/material-ui/api/text-field/#main-content