ReactJS Reactstrap Jumbotron Component Last Updated : 07 Mar, 2024 Comments Improve Suggest changes Like Article Like Report Reactstrap is a bootstrap-based react UI library that is used to make good looking webpages with its seamless and easy-to-use component. A jumbotron is a big grey box used to indicate some text which requires extra attention. Any text that seems to be important can be written inside a jumbotron to make it appear big and noticeable. In this article, we will find out how to use the Jumbotron Component in Reactstrap. Properties: fluid: The fluid properties in reactStrap Jumbotron are used to take full width in the screen. It takes the default value that is false and the type is a boolean.as: The properties are used to find the custom element type.It takes the default value as <div> and, type is elementType.className: className properties in reactStrap are used to specify the CSS attribute .It takes the default value as a string. Syntax: <Jumbotron> content </Jumbotron> 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. folder name, move to it using the following command. cd foldername Step 3: Install Reactstrap in your given directory. npm install --save reactstrap react react-dom Project Structure: It will look like the following. Project structure 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 the Jumbotron component. App.js import React from "react"; import { Jumbotron } from "reactstrap"; const gfg = (props) => { return ( <div> <br /> <Jumbotron> <h3 className="display-2"> GeeksforGeeks! </h3> <hr /> <p className="display-3"> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes. A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes.We provide a variety of services for you to learn, thrive and also have fun! Free Tutorials, Millions of Articles, Live, Online and Classroom Courses ,Frequent Coding Competitions ,Webinars by Industry Experts, Internship opportunities and Job Opportunities. </p> </Jumbotron> </div> ); }; export default gfg; Output: Output: Example 2: This is example in which we will use another Jumbotron component. App.js import React from "react"; import { Jumbotron, Button } from "reactstrap"; const geeksforgeeks = (props) => { return ( <div> <Jumbotron> <h3 className="display-3"> Geeksforgeeks </h3> <p className="lead"> What We Offer... <br></br> Provide a variety of services for you to learn, thrive and also have fun! </p> <hr className="my-2" /> <p> Free Tutorials, Millions of Articles, Live, Online and Classroom Courses, Frequent Coding Competitions, Webinars by Industry Experts, Internship opportunities and Job Opportunities. Billions of Users, Millions of Articles Published, Thousands Got Hired by Top Companies and the numbers are still growing. </p> </Jumbotron> </div> ); }; export default geeksforgeeks; Output: New Jumbotron component Comment More infoAdvertise with us Next Article ReactJS Reactstrap Jumbotron Component taran910 Follow Improve Article Tags : JavaScript Web Technologies ReactJS Reactstrap Similar Reads ReactJS Reactstrap Form Component 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 Form component is used when the user needs to create an instance or collect information. We can use the following approach in ReactJS 5 min read ReactJS Reactstrap Modal Component 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 Modal component provides a solid foundation for creating dialogs, lightboxes, popovers, etc. We can use the following approach in Reac 4 min read ReactJS Reactstrap Nav Component 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 Nav component allows the user to provide a list of various forms of navigation menus. We can use the following approach in ReactJS to 3 min read ReactJS Reactstrap Layout Component 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 Layout component is used for organizing the layout of our application content using Row, Column, and Container Component. The Row com 5 min read ReactJS Reactstrap Navbar Component 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 Navbar component provides a way for users to provide them navigation controls at the top of an application. We can use the following a 3 min read ReactJS Reactstrap List Component 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 List component allows the user to display a list. We can use the following approach in ReactJS to use the ReactJS Reactstrap List Comp 3 min read ReactJS Reactstrap Popover Component 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 Popover component is a container-type element that hovers over the parent window. We can use the following approach in ReactJS to use 4 min read ReactJS Reactstrap Media Component Reactstrap is a bootstrap-based react UI library that is used to make good-looking webpages with its seamless and easy-to-use component. In this article, we will see how to use the Media Component in Reactstrap. The media component is used to add some media to our project. Properties: Tag: In ReactS 3 min read ReactJS Reactstrap Pagination Component 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 Pagination component allows the users to easily switch between pages across a website or app. We can use the following approach in Rea 4 min read ReactJS Reactstrap Fade Component 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 Fade component provides a way to add a fade animation to a child component or an element. We can use the following approach in ReactJS 4 min read Like