UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

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