material UI install

  1. Install Create React App globally by running the following command in the terminal:
npx create-react-app my-app
  1. Change the directory to the newly created app:
cd my-app
  1. Install Material-UI by running the following command:
npm install @mui/material @emotion/react @emotion/styled
  1. Import the necessary components from Material-UI in your React components:
import { Button, TextField, Typography } from '@mui/material';
  1. Use the Material-UI components in your React application as needed.