Open In App

ReactJS Reactstrap Progress Component

Improve
Improve
Like Article
Like
Save
Share
Report

Reactstrap is a popular front-end library that is easy to use React Bootstrap 4 components. This library contains the stateless React components for Bootstrap 4. The Progress component allows the user to display the current progress of an operation flow. We can use the following approach in ReactJS to use the ReactJS Reactstrap Progress Component.

Progress Props:

  • multi: It is used to indicate whether to show multiple progress or not.
  • bar: It is used in combination with multi prop.
  • tag: It is used to denote the tag for this component. 
  • value: It is used to denote the value of the progress.
  • max: It is the maximum value that progress can reach.
  • min: It is the minimum value that progress can begin from.
  • animated: It is used to indicate whether to show animation or not.
  • striped: It is used to indicate whether to show striped style or not.
  • color: It is used to denote the color of the progress component.
  • className: It is used to denote the class name for styling.
  • barStyle: used to add style to the inner progress-bar element
  • barClassName: used to add class to the inner progress-bar element
  • barAriaValueText: It is used to denote the text value of bar aria value.
  • barAriaLabelledBy: It is used to denote the bar aria labelled value

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 required module using the following command:

    npm install reactstrap bootstrap

Project Structure: It will look like the following.

Project Structure

Example 1: Now write down the following code in the App.js file. Here we have shown Progress with the multi prop.

App.js




import React from 'react'
import 'bootstrap/dist/css/bootstrap.min.css';
import { Progress } from "reactstrap"
  
function App() {
    return (
        <div style={{
            display: 'block', width: 700, padding: 30
        }}>
            <h4>ReactJS Reactstrap Progress Component</h4>
            <Progress multi>
                <Progress bar color="success" value="30" />
                <Progress bar color="danger" value="40" />
                <Progress bar color="warning" value="30" />
            </Progress>
        </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:

Example 2: Now write down the following code in the App.js file. Here we have shown Progress without the multi prop.

App.js




import React from 'react'
import 'bootstrap/dist/css/bootstrap.min.css';
import { Progress } from "reactstrap"
  
function App() {
    return (
        <div style={{
            display: 'block', width: 700, padding: 30
        }}>
            <h4>ReactJS Reactstrap Progress Component</h4>
            <Progress value={50} /> <br></br>
            <Progress value={70} /> <br></br>
            <Progress value={100} />
        </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:



Last Updated : 07 Mar, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads