import { Component } from '@angular/core';
import { NavController } from '@ionic/angular';
const HTML_TEMPLATE = `
Ionic Academy
testtttt!
`;
const CSS_STYLE = `
.special-text {
font-weight: 800;
font-size: 15pt;
text-align: center;
color: #0000FF;
}
`;
@Component({
selector: 'test-component',
template: HTML_TEMPLATE,
styles: [CSS_STYLE]
})
export class TestComponent {
constructor(private navCtrl: NavController) {}
leavePage() {
this.navCtrl.pop();
}
}