React js UI example. product list

React js UI example and template, product list! . 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: products

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 href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="container bootstrap snippets bootdey">
    <div class="row">
        <div class="col-md-3 store-menu">
            <ul class="nav">
                <li><a><i class="fa fa-angle-right"></i>Sport</a></li>
                <li><a><i class="fa fa-angle-right"></i>Computer </a></li>
                <li><a><i class="fa fa-angle-right"></i>Education </a></li>
                <li><a><i class="fa fa-angle-right"></i>Cars </a></li>
                <li><a><i class="fa fa-angle-right"></i>Snippets </a></li>
                <li><a><i class="fa fa-angle-right"></i>Bootdey </a></li>
                <li><a><i class="fa fa-angle-right"></i>Category bla </a></li>
                <li><a><i class="fa fa-angle-right"></i>Users</a></li>
                <li><a><i class="fa fa-angle-right"></i>Category 9</a></li>
                <li><a><i class="fa fa-angle-right"></i>Category 10</a></li>
                <li><a><i class="fa fa-angle-right"></i>Category 11</a></li>
                <li><a><i class="fa fa-angle-right"></i>Category 12</a></li>
            </ul>
        </div>
        <div class="col-md-9">
            <div class="col-md-6 col-sm-6">
                <div class="store-item">
                    <div class="store-item-rating text-warning">
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star-half-o"></i>
                    </div>
                    <div class="store-item-image">
                        <a href="#/">
                            <img src="https://www.bootdey.com/image/500x200/FFB6C1/000000" alt="" class="img-responsive"/>
                        </a>
                    </div>
                    <div class="store-item-info clearfix">
                        <span class="store-item-price themed-color-dark pull-right">$ 109</span>
                        <a href="#/"><strong>Product one</strong></a><br/>
                        <small><i class="fa fa-shopping-cart text-muted"></i>
                        <a href="#/" class="text-muted">Add to cart</a></small>
                    </div>
                </div>
            </div> 
            <div class="col-md-6 col-sm-6">
                <div class="store-item">
                    <div class="store-item-rating text-warning">
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star-half-o"></i>
                    </div>
                    <div class="store-item-image">
                        <a href="#/">
                            <img src="https://www.bootdey.com/image/500x200/87CEFA/000000" alt="" class="img-responsive"/>
                        </a>
                    </div>
                    <div class="store-item-info clearfix">
                        <span class="store-item-price themed-color-dark pull-right">$ 109</span>
                        <a href="#/"><strong>Product two</strong></a><br/>
                        <small><i class="fa fa-shopping-cart text-muted"></i>
                        <a href="#/" class="text-muted">Add to cart</a></small>
                    </div>
                </div>
            </div>  
            <div class="col-md-6 col-sm-6">
                <div class="store-item">
                    <div class="store-item-rating text-warning">
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star-half-o"></i>
                    </div>
                    <div class="store-item-image">
                        <a href="#/">
                            <img src="https://www.bootdey.com/image/500x200/FF7F50/000000" alt="" class="img-responsive"/>
                        </a>
                    </div>
                    <div class="store-item-info clearfix">
                        <span class="store-item-price themed-color-dark pull-right">$ 109</span>
                        <a href="#/"><strong>Product</strong></a><br/>
                        <small><i class="fa fa-shopping-cart text-muted"></i>
                        <a href="#/" class="text-muted">Add to cart</a></small>
                    </div>
                </div>
            </div>  
            <div class="col-md-6 col-sm-6">
                <div class="store-item">
                    <div class="store-item-rating text-warning">
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star"></i>
                        <i class="fa fa-star-half-o"></i>
                    </div>
                    <div class="store-item-image">
                        <a href="#/">
                            <img src="https://www.bootdey.com/image/500x200/20B2AA/000000" alt="" class="img-responsive"/>
                        </a>
                    </div>
                    <div class="store-item-info clearfix">
                        <span class="store-item-price themed-color-dark pull-right">$ 109</span>
                        <a href="#/"><strong>Sunglasses</strong></a><br/>
                        <small><i class="fa fa-shopping-cart text-muted"></i>
                        <a href="#/" class="text-muted">Add to cart</a></small>
                    </div>
                </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{
    margin-top:20px;
}

.store-item {
    padding: 5px;
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 4px solid #eee;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.store-item:hover {
    border-color: #ddd;
    text-decoration: none;
}

.store-item:hover .store-item-image img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.store-item:hover .store-item-rating {
    animation-name: fadeInQuick;
    -webkit-animation-name: fadeInQuick;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible!important;
    display:block;
     opacity: 1;
     background:transparent;
}

.store-item-rating {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    padding: 10px;
    opacity: 0;
    filter: alpha(opacity=0);
    background-color: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: 10;
}

.text-warning, 
.text-warning:hover, 
a.text-warning, 
a.text-warning:focus, 
a.text-warning:hover {
    color: #e67e22;
}

.store-item-image {
    overflow: hidden;
}

.store-item-image img {
    -webkit-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
}

.store-item-info {
    padding: 20px;
    background-color: #f9f9f9;
}

.themed-color-dark {
    color: #394263;
}

.store-item-price {
    font-weight: 700;
    font-size: 28px;
}

.text-primary, .text-primary:hover, a, a:focus, a:hover {
    color: #1bbae1;
    text-decoration:none;
}

.store-menu {
  margin-top: 30px;
}

.store-menu ul li {
  border-bottom: 1px solid #f0f4f7;
}

.store-menu ul li:last-child {
  border-bottom: none;
}

.store-menu ul li a {
  color: #93a3b5;
  font-size: 14px;
  font-weight: 400;
}

.store-menu ul li a i {
  margin-right: 8px;
  font-size: 14px;
}

.store-menu ul li a:hover {
  background-color: #fafcfd;
  color: #5b9bd1;
}

.store-menu ul li.active {
  border-bottom: none;
}

.store-menu ul li.active a {
  color: #5b9bd1;
  background-color: #f6f9fb;
  border-left: 2px solid #5b9bd1;
  margin-left: -2px;
}

Similar snippets

React js template and ui example Shop Product List

Shop Product List

React js template and ui example Shop page

Shop page

React js template and ui example Shop categories

Shop categories

React js template and ui example Simple panel items

Simple panel items

React js template and ui example Loading Animation like Facebook Style

Loading Animation like Facebook Style

React js template and ui example light user list

light user list

React js template and ui example login with overlay image

login with overlay image

React js template and ui example User profile with friends and chat

User profile with friends and chat