React js UI example. Pricing table

React js UI example and template, Pricing table ! . Take a look at this UI example and see how it can enhance your project. Your can copy or download the code and use it in your project. Don't forget to browse our library of other free React Native templates for even more design and functionality inspiration. Happy coding!
Tags: price,pricing

1. First, we need fresh reactjs setup, and for that, we need to run below commands into out terminal, and also we should have latest node version installed on our system:

npx create-react-app my-awesome-project

cd my-awesome-project

npm start

2. Now we need to run below commands into our project terminal to get bootstrap and related modules into our reactjs application:

npm install [email protected] --save

npm start //For start project again

3. Finally for the main output, we need to add below code into our my-awesome-project/src/App.js file or if you have fresh setup then you can replace my-awesome-project/src/App.js file code with below code:

import React from 'react';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';


function App() {
  
	return (
		<div>
			<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css"/>
<div class="container bootstrap snippets bootdey">
    <hr/>
    <div class="row content">
		<div class="col-lg-10 col-lg-offset-1">
			<div class="col-sm-4 text-center">
				<div class="plan">
					<p class="icon bronze">
						<i class="fa fa-tablet fa-fw"></i>
					</p>
					<h2 class="bronze-text">Bronce</h2>
					<p class="bronze-text price">$12</p>
					<p>Single License</p>
					<p>One Website</p>
					<p>Basic Support</p>
					<a class="btn btn-pricing" href="#/" target="_blank">Order Now</a>
				</div>
			</div>
		
			<div class="col-sm-4 text-center">
				<div class="plan featured">
					<p class="icon silver">
						<i class="fa fa-laptop fa-fw"></i>
					</p>
					<h2>Silver</h2>
					<p class="price">$24</p>
					<p>Multiple Licenses</p>
					<p>Unlimited Websites</p>
					<p>Great Support</p>
					<a class="btn btn-pricing" href="#/" target="_blank">Order Now</a>
				</div>
			</div>
			
			<div class="col-sm-4 text-center">
				<div class="plan">
					<p class="icon gold">
						<i class="fa fa-desktop fa-fw"></i>
					</p>
					<h2 class="gold-text">Gold</h2>
					<p class="gold-text price">$399</p>
					<p>Extended License</p>
					<p>Unlimited Websites</p>
					<p>Premium Support</p>
					<a class="btn btn-pricing" href="#/" target="_blank">Order Now</a>
				</div>
			</div>
		</div>
	</div>
</div>
		</div>
	);
}
export default App;

4. Now we need to add below code into our my-awesome-project/src/App.css file :

body{
 background:#EEEEEE;    
}
 
.bronze {
  background-color: #B0C4DE;
}

.bronze-text {
  color: #B0C4DE;
}

.silver {
  color: #fff;
  background-color: #C0C0C0;
 }
  
.gold {
  color: #fff;
  background-color: #FFD700;
 } 
 
.gold-text {
    color:#FFD700;    
}
  
.content .plan {
    position:relative;
    top:30px;
    background:rgba(255,255,255,1);
    padding-top:40px;
    padding-bottom:40px;
    border-radius:7px;
    color:#777;
    box-shadow:5px 5px 0 rgba(0,0,0,0.05);
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out;
}

.content .plan.featured {
    top:0;
    padding-top:50px;
    padding-bottom:50px;
}

.content .plan:hover,
.content .plan.featured {
    background:#5CC9DF;
    color:#fff;
}

.content .plan h2 {
    font-size:28px;
    font-weight:700;
    margin-bottom:0;
    text-transform:uppercase;
}

.content .plan.featured h2 {
    margin-bottom:10px;
}

.content .plan p {
    margin-bottom:5px;
    font-weight:400;
}

.content .plan .icon {
    display:inline-block;
    margin-bottom:30px;
    width:120px;
    height:120px;
    border-radius:50%;
    font-size:48px;
    line-height:120px;
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out;
}

.content .plan.featured .icon,
.content .plan:hover .icon{
    color:#5cc9df;
    background:#fff;
}

.content .plan .btn-pricing {
    margin-top:20px;
    margin-bottom:0;
    font-size:16px;
    padding:10px 20px;
}

.content .plan.featured .btn-pricing,
.content .plan:hover .btn-pricing {
    background: #fff;
    color:#5CC9DF;
}

.content .plan .price {
    font-size:48px;
    font-weight:100;
    line-height:48px;
    margin-bottom:30px;
}

.content .plan.featured .price {
    margin-bottom:40px;
}

Similar snippets

React js template and ui example single price plan

single price plan

React js template and ui example pricing section

pricing section

React js template and ui example purple pricing plan

purple pricing plan

React js template and ui example pricing table with black header

pricing table with black header

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example timeline steps

timeline steps

React js template and ui example meet our team with hover effect

meet our team with hover effect

React js template and ui example Forum post list

Forum post list