React js UI example. summary social networks

React js UI example and template, summary social networks! . 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: site,report,list,user,bootstrap,snippet,social,networks

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"/>
<link href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet"/>
<div class="container bootstrap snippets bootdey">
      <div class="header">
        <h3 class="text-muted prj-name">
            <img class="img-thumbnail"  src="https://bootdey.com/img/Content/user_1.jpg"/>
            Jhon Snader
        </h3>
      </div>
     <div class="jumbotron list-content">
         <div class="row social-resume">
            <div class="col-lg-6 col-sm-6">
                <section class="panel">
                    <div class="icon-content facebook">
                        <i class="fa fa-facebook"></i>
                    </div>
                    <div class="value">
                        <h1 class="count">3.000</h1>
                        <p>Friends</p>
                    </div>
                </section>
            </div>
            <div class="col-lg-6 col-sm-6">
                <section class="panel">
                    <div class="icon-content google-plus">
                        <i class="fa fa-google-plus"></i>
                    </div>
                    <div class="value">
                        <h1 class="count2">947</h1>
                        <p>Pleople</p>
                    </div>
                </section>
            </div>
            <div class="col-lg-6 col-sm-6">
                <section class="panel">
                    <div class="icon-content twitter">
                        <i class="fa fa-twitter"></i>
                    </div>
                    <div class="value">
                        <h1 class="count3">2.000</h1>
                        <p>Followers</p>
                    </div>
                </section>
            </div>
            <div class="col-lg-6 col-sm-6">
                <section class="panel">
                    <div class="icon-content youtube">
                        <i class="fa fa-youtube"></i>
                    </div>
                    <div class="value">
                        <h1 class="count4">25</h1>
                        <p>Videos</p>
                    </div>
                </section>
            </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 :

.jumbotron h1, .jumbotron .h1 {
    font-size: 25px;
}
.social-resume .facebook {
    background: #3b5998;
}

.social-resume .google-plus {
    background:#DD4B39;
}

.social-resume .twitter {
    background: #00acee;
}

.social-resume .youtube {
    background: #c4302b;
}
.social-resume .icon-content, .social-resume .value {
    display: inline-block;
    text-align: center;
}

.social-resume .value  {
    float: right;

}

.social-resume .value h1, .social-resume .value p  {
    margin: 0;
    padding: 0;
    color: #c6cad6;
}

.social-resume .value h1 {
    font-weight: 300;
}

.social-resume .icon-content i {
    color: #fff;
    font-size: 50px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
        -ms-border-radius: 100%;
         -o-border-radius: 100%;
            border-radius: 100%;
    -webkit-border: 2px solid #fff;
       -moz-border: 2px solid #fff;
        -ms-border: 2px solid #fff;
         -o-border: 2px solid #fff;
            border: 2px solid #fff;
    width: 85px;
    height: 85px;
    padding-top: 17px;
    box-shadow:3px 3px 3px #000000;
}

.social-resume .icon-content {
    width: 40%;
    padding: 25px 15px;
    -webkit-border-radius: 4px 0px 0px 4px;
       -moz-border-radius: 4px 0px 0px 4px;
        -ms-border-radius: 4px 0px 0px 4px;
         -o-border-radius: 4px 0px 0px 4px;
            border-radius: 4px 0px 0px 4px;
}

.social-resume .value {
    width: 58%;
    padding-top: 31px;
}

.social-resume section.panel{
    border: none;
}

Similar snippets

React js template and ui example social network dashboard count

social network dashboard count

React js template and ui example bs4 beta user list with badges

bs4 beta user list with badges

React js template and ui example bs4 project list with progress

bs4 project list with progress

React js template and ui example Colored Social icons

Colored Social icons

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example chat app

chat app

React js template and ui example invoice order receipt

invoice order receipt

React js template and ui example user profile bio graph and total sales

user profile bio graph and total sales