import {Component, Directive} from 'angular2/angular2';
import {App, IonicView, Register} from 'ionic/ionic';
@IonicView({
template: '' +
'Heading' +
'' +
'' +
'' +
'' +
'' +
'' +
'' +
'' +
'' +
`
All Genres
Alternative
Blues
` +
''
})
export class FirstPage {
constructor() {
}
}
@App({
template: ``,
routes: [
{
path: '/first',
component: FirstPage,
root: true
}
]
})
class MyApp {
constructor() {
}
}