Open In App

ReactJS Semantic UI Modal Module

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:

Syntax:



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

Creating React Application And Installing Module:

npx create-react-app foldername
cd foldername
 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

Article Tags :