UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

16 lines (11 loc) 265 B
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-empty', templateUrl: './empty.component.html', styleUrls: ['./empty.component.css'] }) export class EmptyComponent implements OnInit { constructor() { } ngOnInit() { } }