I have an angular ionic app and I am trying to set up a side drawer. I have the following in very basic code which is based off of the ionic starter app. I can't figure out why my side drawer does not render. I've followed samples and looked at the ionic documentation.
app.component.html
<ion-app>
<ion-menu side="start">
<ion-header>
<ion-toolbar>
<ion-title>
Sample App
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
<ion-item>
<ion-icon name="business" slot="start"></ion-icon>
<ion-label>Sample Drawer Item</ion-label>
</ion-item>
</ion-list>
</ion-content>
</ion-menu>
<ion-router-outlet main></ion-router-outlet>
</ion-app>
test.page.html
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-menuitem menu="m1"></ion-menuitem>
</ion-buttons>
<ion-title>places</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
</ion-content>