JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

<div class="container">
    <div class="row">
        <div class="col-xs-6">
             <h1>
            <a href="https://twitter.com/tahirtaous">
            <img src="logo.png">
            Logo here
            </a>
          </h1>

        </div>
        <div class="col-xs-6 text-right">
             <h1>INVOICE</h1>

             <h1><small>Invoice #001</small></h1>

        </div>
    </div>
    <div class="row">
        <div class="col-xs-5">
            <div class="panel panel-default">
                <div class="panel-heading">
                     <h4>From: <a href="#">Your Name</a></h4>

                </div>
                <div class="panel-body">
                    <p>Address
                        <br>details
                        <br>more
                        <br>
                    </p>
                </div>
            </div>
        </div>
        <div class="col-xs-5 col-xs-offset-2 text-right">
            <div class="panel panel-default">
                <div class="panel-heading">
                     <h4>To : <a href="#">Client Name</a></h4>

                </div>
                <div class="panel-body">
                    <p>Address
                        <br>details
                        <br>more
                        <br>
                    </p>
                </div>
            </div>
        </div>
    </div>
    <!-- / end client details section -->
    <table class="table table-bordered">
        <thead>
            <tr>
                <th>
                     <h4>Service</h4>

                </th>
                <th>
                     <h4>Description</h4>

                </th>
                <th>
                     <h4>Hrs/Qty</h4>

                </th>
                <th>
                     <h4>Rate/Price</h4>

                </th>
                <th>
                     <h4>Sub Total</h4>

...