Open In App

ReactJS Semantic UI Modal Module

Last Updated : 06 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks.

In this article, we will see how to use Modal Module in ReactJS Semantic UI. The Modal Module is used to display content that covers the whole screen.

Properties:

  • Basic: We can make a basic modal.
  • Shorthand: We can make a shorthand property.

Syntax:

<Modal trigger={<Button>Content</Button>} />

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: Install semantic UI in your given directory.
 npm install semantic-ui-react semantic-ui-css

Project Structure: It will look like the following.

Step to Run Application: Run the application from the root directory of the project, using the following command.

npm start

Example 1: this is the basic example that shows how to use modal module using ReactJS Semantic UI Modal Module.

App.js

 

Output: 

Example 2: In this example, we have changed the alignment to the top of the page instead of the center in a modal module using ReactJS Semantic UI Modal Module.

App.js

 

Output:

Reference: https://react.semantic-ui.com/modules/modal


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads