JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
    <div ng-init="data=[{'ura':'16:00', 'vreme':'oblačno', 'obeti':'deževno'},
                        {'ura':'17:00', 'vreme':'deževno', 'obeti':'sončno'}]">
        <table>
            <thead>
                <tr>
                    <th>#</th>
                    <th>Ura</th>
                    <th>Vreme</th>
                    <th>Obeti</th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="item in data">
                    <td>{{$index + 1}}</td>
                    <td>{{item.ura}}</td>
                    <td>{{item.vreme}}</td>
                    <td>{{item.obeti}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>

CSS

th {
    color: grey;
}