Open In App

ReactJS Semantic UI Pagination Addons

Last Updated : 24 Jun, 2021
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 know how to use Pagination Addons in ReactJS Semantic UI. Pagination Addons is used to make pagination in which we can add components and show them on our project.

States:

  • Disabled: It is used to disable pagination.

Syntax:

<Pagination />

 

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 which shows how to use pagination addons by using ReactJS Semantic UI Pagination Addons.

App.js




import React from 'react'
import { Pagination} from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
const Btt = () => (
<div>
  
<div style={{
            display: 'block', width: 700, padding: 30, border: 5
    }}>
  <h1 >GeeksforGeeks</h1>
  <br />
  <Pagination defaultActivePage={2} totalPages={8} />
    
</div>
</div>
)
export default Btt


Output: 

Example 2: In this example, we are showing the disabled state in a pagination addons by using ReactJS Semantic UI Pagination Addons.

App.js




import React from 'react'
import { Pagination} from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
const Btt = () => (
<div>
  
<div style={{
            display: 'block', width: 700, padding: 30, border: 5
    }}>
  <h1 >GeeksforGeeks</h1>
  <br />
  <Pagination defaultActivePage={2} totalPages={8} disabled/>
    
</div>
</div>
)
export default Btt


Output:

Reference: https://react.semantic-ui.com/addons/pagination



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads