JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://googledrive.com/host/0B9ZnEqMygsTDRm5YeTgycXd2Y2c/css/bootstrap-theme.css">
<link rel="stylesheet" href="https://googledrive.com/host/0B9ZnEqMygsTDRm5YeTgycXd2Y2c/css/bootstrap.css">
<script src="https://googledrive.com/host/0B9ZnEqMygsTDeFhvdVplbDhJdVE/jquery.js"></script>
<script src="https://googledrive.com/host/0B9ZnEqMygsTDRm5YeTgycXd2Y2c/js/bootstrap.js"></script>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="..." alt="...">
<div class="carousel-caption">
...
</div>
</div>
<div class="item">
<img src="..." alt="...">
<div class="carousel-caption">
...
</div>
</div>
...
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>