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>
<div class="container bootstrap snippets bootdey">
<div class="row">
<div class="col-md-offset-3 col-md-6 col-xs-12">
<div class="well well-sm well-social-post">
<form>
<ul class="list-inline" id='list_PostActions'>
<li class='active'><a href='#'>Update status</a></li>
<li><a href='#'>Add photos/Video</a></li>
<li><a href='#'>Create photo album</a></li>
</ul>
<textarea class="form-control" placeholder="What's in your mind?"></textarea>
<ul class='list-inline post-actions'>
<li><a href="#/"><span class="glyphicon glyphicon-camera"></span></a></li>
<li><a href="#/" class='glyphicon glyphicon-user'></a></li>
<li><a href="#/" class='glyphicon glyphicon-map-marker'></a></li>
<li class='pull-right'><a href="#/" class='btn btn-primary btn-xs'>Post</a></li>
</ul>
</form>
</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; background-color: #eeeeee;}
.well-social-post {
border-radius: 0;
background-color: #ffffff;
border: 1px solid #ddd;
padding:0;
}
.well-social-post .glyphicon,
.well-social-post .fa,
.well-social-post [class^='icon-'],
.well-social-post [class*='icon-'] {
font-weight: bold;
color: #999999;
}
.well-social-post a,
.well-social-post a:hover,
.well-social-post a:active,
.well-social-post a:focus {
text-decoration: none;
}
.well-social-post .list-inline {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
.well-social-post .list-inline li {
position: relative;
}
.well-social-post .list-inline li.active::after {
position: absolute;
display: block;
width: 0;
height: 0;
content: "";
top: 30px;
left: 50%;
left: -webkit-calc(50% - 5px);
left: -moz-calc(50%-5px);
left: calc(50% - 5px);
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #dddddd;
}
.well-social-post .list-inline li.active a {
color: #222222;
font-weight: bold;
}
.well-social-post .form-control {
width: 100%;
min-height: 100px;
border: none;
border-radius: 0;
box-shadow: none;
}
.well-social-post .list-inline {
padding: 10px;
}
.well-social-post .list-inline li + li {
margin-left: 10px;
}
.well-social-post .post-actions {
margin: 0;
background-color: #f6f7f8;
border-top-color: #e9eaed;
}