React js UI example. social blog post widget with commets

React js UI example and template, social blog post widget with commets! . 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: cards,widget,post,user

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-6 col-xs-12">
            <section class="widget">
                <div class="widget-controls">
                    <a href="#/"><i class="fa fa-refresh"></i></a>
                    <a href="#/" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
                </div>
                <div class="widget-body">
                    <div class="widget-top-overflow windget-padding-md clearfix bg-warning text-white">
                        <h3 class="mt-lg mb-lg">Sing - <span class="fw-semi-bold">Next Generation</span> Admin Dashboard
                            Template</h3>
                        <ul class="tags text-white pull-right">
                            <li><a href="#/">features</a></li>
                        </ul>
                    </div>
                    <div class="post-user mt-n-lg">
                        <span class="thumb-lg pull-left mr">
                            <img class="img-circle" src="https://bootdey.com/img/Content/user_1.jpg" alt="..."/>
                        </span>
                        <h5 class="mt-sm fw-normal text-white">Arnold <small class="text-white text-light">@arni</small></h5>
                        <p class="fs-mini text-muted"><time>25 mins</time> &nbsp; <i class="fa fa-map-marker"></i> &nbsp; near Amsterdam</p>
                    </div>
                    <p class="text-light fs-mini m">Lots of cool stuff is happening around you. Just calm down for a sec and listen. Colors, sounds,
                        thoughts, ideas. </p>
                </div>
                <footer class="bg-body-light">
                    <ul class="post-links">
                        <li><a href="#/">1 hour</a></li>
                        <li><a href="#/"><span class="text-danger"><i class="fa fa-heart"></i> Like</span></a></li>
                        <li><a href="#/">Comment</a></li>
                    </ul>
                    <ul class="post-comments mt mb-0">
                        <li>
                            <span class="thumb-xs avatar pull-left mr-sm">
                                <img class="img-circle" src="https://bootdey.com/img/Content/user_2.jpg" alt="..."/>
                            </span>
                            <div class="comment-body">
                                <h6 class="author fw-semi-bold">Margaret Awoentg <small>6 mins ago</small></h6>
                                <p>Hey, this is snippet is on bootdey.com. ok?</p>
                            </div>
                        </li>
                        <li>
                            <span class="thumb-xs avatar pull-left mr-sm">
                                <img class="img-circle" src="https://bootdey.com/img/Content/user_3.jpg" alt="..."/>
                            </span>
                            <div class="comment-body">
                                <input class="form-control input-sm" type="text" placeholder="Write your comment..."/>
                            </div>
                        </li>
                    </ul>
                </footer>
            </section>
		</div>
		<div class="col-md-6 col-xs-12">
            <section class="widget">
                <div class="widget-controls">
                    <a href="#/"><i class="fa fa-refresh"></i></a>
                    <a href="#/" data-widgster="close"><i class="glyphicon glyphicon-remove"></i></a>
                </div>
                <div class="widget-body">
                    <div class="widget-top-overflow windget-padding-md clearfix bg-info text-white">
                        <h3 class="mt-lg mb-lg">Sing - <span class="fw-semi-bold">Next Generation</span> Admin Dashboard
                            Template</h3>
                        <ul class="tags text-white pull-right">
                            <li><a href="#/">features</a></li>
                        </ul>
                    </div>
                    <div class="post-user mt-n-lg">
                        <span class="thumb-lg pull-left mr">
                            <img class="img-circle" src="https://bootdey.com/img/Content/user_3.jpg" alt="..."/>
                        </span>
                        <h5 class="mt-sm fw-normal text-white">Mark <small class="text-white text-light">@marni</small></h5>
                        <p class="fs-mini text-muted"><time>25 mins</time> &nbsp; <i class="fa fa-map-marker"></i> &nbsp; near Amsterdam</p>
                    </div>
                    <p class="text-light fs-mini m">Lots of cool stuff is happening around you. Just calm down for a sec and listen. Colors, sounds,
                        thoughts, ideas. </p>
                </div>
                <footer class="bg-body-light">
                    <ul class="post-links">
                        <li><a href="#/">1 hour</a></li>
                        <li><a href="#/"><span class="text-danger"><i class="fa fa-heart"></i> Like</span></a></li>
                        <li><a href="#/">Comment</a></li>
                    </ul>
                    <ul class="post-comments mt mb-0">
                        <li>
                            <span class="thumb-xs avatar pull-left mr-sm">
                                <img class="img-circle" src="https://bootdey.com/img/Content/user_1.jpg" alt="..."/>
                            </span>
                            <div class="comment-body">
                                <h6 class="author fw-semi-bold">Carlos Nertg <small>6 mins ago</small></h6>
                                <p>Hey,this is very cool. Continue with your work</p>
                            </div>
                        </li>
                        <li>
                            <span class="thumb-xs avatar pull-left mr-sm">
                                <img class="img-circle" src="https://bootdey.com/img/Content/user_2.jpg" alt="..."/>
                            </span>
                            <div class="comment-body">
                                <input class="form-control input-sm" type="text" placeholder="Write your comment..."/>
                            </div>
                        </li>
                    </ul>
                </footer>
            </section>
		</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:#eee;
    margin-top:20px;
}

.widget {
  position: relative;
  margin-bottom: 30px;
  padding: 0px 20px;
  background: #fff;
  border-radius: 3px;
}

.widget-controls {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 14px;
  font-size: 12px;
}

.widget-controls>a {
  padding: 1px 4px;
  border-radius: 4px;
  color: rgba(0,0,0,0.4);
  -webkit-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  color:#fff;
}

.text-white {
  color: #fff;
}

.bg-body, .bg-body-light, 
.bg-gray, .bg-gray-transparent, 
.bg-transparent, .bg-primary, 
.bg-success, .bg-warning, 
.bg-danger, .bg-info {
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}

.bg-warning {
  background-color: #f0b518;
}

.bg-info {
  background: #39bbdb;
}

.widget-top-overflow {
  margin-top: -15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.widget-top-overflow, .widget-middle-overflow {
  position: relative;
  margin: 0 -20px;
}

.windget-padding-md {
  padding: 15px 20px;
}

.tags {
  padding-left: 0;
  list-style: none;
}

.tags>li {
  float: left;
  margin:3px;
}

h3, .h3 {
  font-size: 24px;
}

.tags>li>a {
  padding: 2px 8px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid white;
  color: inherit;
  text-decoration: none;
}

.mt-n-lg {
  margin-top: -30px;
}

.post-user {
  position: relative;
}

.mr {
  margin-right: 15px;
}

.thumb-xs, .thumb-sm, .thumb-lg, .thumb {
  position: relative;
  display: inline-block;
  text-align: center;
}

.thumb-lg {
  width: 60px;
}

.thumb-xs img, .thumb-sm img, .thumb-lg img, .thumb img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.post-user img {
  border: 3px solid white;
}

.fs-mini {
  font-size: 13px;
}

.text-light {
  opacity: .8;
}

p {
  margin: 0 0 10px;
}

.widget>footer {
  margin: 0 -20px -15px;
  padding: 15px 20px;
}

.bg-body, .bg-body-light, .bg-gray, 
.bg-gray-transparent, 
.bg-transparent, .bg-primary, 
.bg-success, .bg-warning, 
.bg-danger, .bg-info {
  -webkit-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}

.bg-body-light {
  background-color: #f6f6f6;
}

.post-links {
  margin-bottom: 0px;
  font-size: 12px;
  padding-left: 0;
}

.post-links>li {
  float: left;
  list-style: none;
  margin:4px;
}

.post-links>li>a {
  text-decoration: none;
  color: #999;
}

.post-links+.post-comments {
  margin-top: 30px;
}

.widget>footer .post-comments {
  margin-left: -20px;
  margin-right: -20px;
}



.post-comments {
  font-size: 12px;
  padding-left: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.post-comments>li {
  padding: 10px;
  border-top: 1px solid #e7e7e7;
  list-style: none;
}

.post-comments .avatar {
  margin-top: 1px;
}

.mr-sm {
  margin-right: 10px;
}

.thumb-xs, .thumb-sm, .thumb-lg, .thumb {
  position: relative;
  display: inline-block;
  text-align: center;
}

.thumb-xs {
  width: 28px;
}

.post-comments .author {
  margin-top: 0;
  margin-bottom: 2px;
  color: #7ca9dd;
}

.fw-semi-bold {
  font-weight: 600;
}

h6, .h6 {
  font-size: 12px;
}

.post-comments .comment-body {
  overflow: auto;
}

Similar snippets

React js template and ui example widget user

widget user

React js template and ui example Blog post list

Blog post list

React js template and ui example users resume cards

users resume cards

React js template and ui example recent activity

recent activity

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example timeline events area

timeline events area

React js template and ui example footer social design

footer social design

React js template and ui example bs4 Home Contacts

bs4 Home Contacts