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-sm-6 push-bit">
<a href="#/" class="gallery-link"><img src="https://www.bootdey.com/image/700x250/FF4500/000000" alt="" class="img-responsive push-bit" /></a>
<div class="row push-bit">
<div class="col-xs-4">
<a href="#/" class="gallery-link"><img src="https://www.bootdey.com/image/400x200/DA70D6/000000" alt="" class="img-responsive" /></a>
</div>
<div class="col-xs-4">
<a href="#/" class="gallery-link"><img src="https://www.bootdey.com/image/400x200/4169E1/000000" alt="" class="img-responsive" /></a>
</div>
<div class="col-xs-4">
<a href="#/" class="gallery-link"><img src="https://www.bootdey.com/image/400x200/40E0D0/000000" alt="" class="img-responsive" /></a>
</div>
</div>
</div>
<div class="col-sm-6 push-bit">
<div class="clearfix">
<div class="pull-right">
<span class="h2"><strong>$ 69</strong></span>
</div>
<span class="h4">
<strong class="text-success">Table super power n2000</strong><br />
<small>15 Available</small>
</span>
</div>
<hr />
<p>
Sed porttitor pretium venenatis. Suspendisse potenti. Aliquam quis ligula elit. Aliquam at orci ac neque semper dictum. Sed tincidunt scelerisque ligula, et facilisis nulla hendrerit non. Suspendisse potenti. Pellentesque
non accumsan orci.
</p>
<p>
Sed porttitor pretium venenatis. Suspendisse potenti. Aliquam quis ligula elit. Aliquam at orci ac neque semper dictum. Sed tincidunt scelerisque ligula, et facilisis nulla hendrerit non. Suspendisse potenti. Pellentesque
non accumsan orci.
</p>
<hr />
<form action="" method="post" class="form-inline push-bit text-right">
<select id="ecom-addcart-size" name="ecom-addcart-size" class="form-control" size="1">
<option value="0" disabled="" selected="">SIZE</option>
<option value="xs">XS</option>
<option value="s">S</option>
<option value="m">M</option>
<option value="l">L</option>
<option value="xl">XL</option>
<option value="xxl">XXL</option>
</select>
<button type="submit" class="btn btn-info">Add to Cart</button>
</form>
</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;
}
.push-bit {
margin-bottom: 30px;
}