Material UI (MUI) is a React component library used to build:

  • Buttons
  • Forms
  • Tables
  • Navbar
  • UI layouts

It gives ready-made professional design components

npm install @mui/material @emotion/react @emotion/styled
import TextField from '@mui/material/TextField';
import Button from '@mui/material/Button';

function App() {
  return (
    <div style={{ textAlign: "center", marginTop: "50px" }}>

      <h2>MUI Form Example</h2>

      <TextField label="Name" variant="outlined" />
      <br /><br />

      <TextField label="Email" variant="outlined" />
      <br /><br />

      <Button variant="contained">
        Submit
      </Button>

    </div>
  );
}

export default App;