Open In App

How to use Hidden Component in ReactJS?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Hidden component quickly and responsively toggles the visibility value of components and more with the hidden utilities. Material UI for React has this component available for us and it is very easy to integrate. We can use the Hidden component in ReactJS using the following approach.

Creating React Application And Installing Module:

Step 1: Create a React application using the following command:

npx create-react-app foldername

Step 2: After creating your project folder i.e. foldername, move to it using the following command:

cd foldername

Step 3: After creating the ReactJS application, Install the material-ui modules using the following command:

npm install @material-ui/core

Project Structure: It will look like the following.

Project Structure

Filename-App.js: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.

App.js




import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import Hidden from '@material-ui/core/Hidden';
import Paper from '@material-ui/core/Paper';
  
const App = () => {
  
  const useStyles = makeStyles((theme) => ({
    paper: {
      flex: '1 0 auto',
      margin: theme.spacing(1),
      padding: theme.spacing(2),
      color: theme.palette.text.secondary,
      textAlign: 'center',
    },
  }));
  
  const classes = useStyles();
  
  return (
    <div style={{
      display: 'flex',
      flexWrap: 'wrap',
    }}>
      <div style={{ width: '100%', float: 'left' }}>
        <h3>How to use Hidden Component in ReactJS?</h3> <br />
      </div>
      <Hidden mdDown>
        <Paper className={classes.paper}>Small Down</Paper>
      </Hidden>
      <Hidden smDown>
        <Paper className={classes.paper}>Medium Down</Paper>
      </Hidden>
      <Hidden xsDown>
        <Paper className={classes.paper}>Large Down</Paper>
      </Hidden>
    </div>
  );
}
  
export default App;


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:

Now are you start reducing the size of your window, you will notice that the first box will get hidden, followed by the next two. This is how Hidden Component works in ReactJS.



Last Updated : 20 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads