React js UI example. single team list

React js UI example and template, single team 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: team

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="team-area sp">
    <div class="container">
       <div class="row">
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </div>
             </div>
          </div>
          <div class="col-sm-6 col-md-4 col-lg-3 single-team">
             <div class="inner">
                <div class="team-img">
                   <img src="https://bootdey.com/img/Content/avatar/avatar8.png" alt="Member Photo"/>
                </div>
                <div class="team-content">
                   <h4>Virgie Perry</h4>
                   <h5>Athletic Trainer</h5>
                   <div class="team-social">
                      <a href="#/" class="fa fa-facebook"></a>
                      <a href="#/" class="fa fa-twitter"></a>
                      <a href="#/" class="fa fa-linkedin"></a>
                   </div>
                </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;}
.single-team .inner {
    text-align: center;
	margin-bottom: 35px;
	border: 1px solid #e5eaf0;
	padding: 5px 5px 0px;
}

.single-team .inner .team-img {
	position: relative;
}

.single-team .inner .team-img img {
	width: 100%;
}

.single-team .inner .team-img::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.single-team .inner .team-img:hover::after {
	opacity: 0.4;
}

.single-team .inner .team-content {
	padding: 22px 0px 0px;
}

.single-team .inner .team-content h4 {
	font-size: 18px;
	font-weight: 400;
}

.single-team .inner .team-content h5 {
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.5px;
	color: #7d91aa;
}

.single-team .inner .team-content a {
	display: inline-block;
	padding: 2px;
	margin: 0 3px;
	font-size: 16px;
}

.team-social {
	background: #f3f6fa;
	width: 50%;
	padding-top: 4px;
	margin: auto;
	border-radius: 15px 15px 0px 0px;
	margin-top: 17px;
}

Similar snippets

React js template and ui example bs4 team list

bs4 team list

React js template and ui example team user resume

team user resume

React js template and ui example Project Team

Project Team

React js template and ui example team list with icons on hover

team list with icons on hover

React js template and ui example bs5 dark footer

bs5 dark footer

React js template and ui example Blog Detail App

Blog Detail App

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

user profile bio graph and total sales

React js template and ui example bs4 product detail

bs4 product detail