Hi,
I haven’t found a styleguide for ionic 2 si i wanted to ask what is the prefered way of doing something like this:
<div class="bottom-nav" (click)="goToMain()">
<ion-icon ios="ios-arrow-back"></ion-icon><span>Main page</span>
</div>
I’m having this button like on every page except the home which when is clicked fires function which return me to home page.
So im’m guesing this should be some custom component not a page.
Question is where should i put files for this component which will then be included inside every page except the home page?
Thanks in advance!