JSFiddle - React, Tailwind, and code Playground

by andysmiffy

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
        <div class="row">
            <div class="col">
                <div class="panel panel-default">         
                    <div class="panel-heading">
                        <h3 class="panel-title">Select your fruit</h3>
                    </div>
                    <div class="panel-body">

                        <table class="table table-hover">
                            <thead>
                            <tr>
                                <th>Fruit Type</th>
                                <th>Price</th>
                                <th>Number required</th>
                            </tr>
                            </thead>
                            <tbody>
                            <tr>
                                <td>Apples</td>
                                <td>£1.95</td>
                                <td>1</td>
                            </tr>
                            <tr>
                                <td>Pears</td>
                                <td>£1.50</td>
                                <td>1</td>
                            </tr>
                            <tr>
                                <td>Bananas</td>
                                <td>£9.00</td>
                                <td>1</td>
                            </tr>
            
                            </tbody>
                        </table>
                    </div>            
                </div>

            </div>            
          </div>

            <div class="row">
            <div class="col">
                <div class="panel panel-default">         
                    <div class="panel-heading">
                        <h3 class="panel-title">Select your Vegetables</h3>
                    </div>
                    <div...