I need to arrange a tabset and buttons in a single row. The tabset is already displayed, now I just need to add the buttons.
<div class="form-group col-sm-8 ">
<div class="col-lg-8" style="margin-top:35px;" >
<h6 class="text-right"><button class="btn btn-secondary btn-sm" >Select File</button></h6>
<h5 class="text-right"> <button class="btn btn-secondary btn-sm" routerLinkActive="active" [routerLink]="['/summary']" >Go</button></h5>
<tabset>
<tab>
<ng-template tabHeading><strong>Content</strong></ng-template>
</tab>
<tab>
<ng-template tabHeading><strong>Meta Data</strong></ng-template>
</tab>
</tabset>
</div>
</div>
</div>