Ion vew view title dissapears when you add the ion-tabs tag

Hi,
I’m trying to create a page inside of the ‘sidemenu’ template that has the navigation bar at the top, and tabs directly beneath them. This is the code that I have so far.

`

<ion-view view-title="Hello">
<ion-tabs class="tabs-top">

        <!-- Tab 1 -->
        <ion-tab title="Tab 1">
            <ion-nav-view name="tab-tab1">
                <ion-content>
                    Tab 1 content
                </ion-content>

            </ion-nav-view>
        </ion-tab>


        <!-- Tab 2 -->
        <ion-tab title="Tab 1">
            <ion-nav-view name="tab-tab2">
                <ion-content>
                    Tab 2 content
                </ion-content>
            </ion-nav-view>
        </ion-tab>
    </ion-tabs>
</ion-view>

`
Whenever I have the “ion-tabs” tag the “Hello” title disappears and the header becomes just a blank bar. If I remove the ion-tabs tag then the “Hello” title comes back to the top of the screen.

Does anyone know why this is happening?