import { Component, OnInit } from '@angular/core'; @Component({ selector: 'na-utils', template: `

utils works!

`, styles: [] }) export class UtilsComponent implements OnInit { constructor() { } ngOnInit() { } }