angular/aio/content/examples/toh-pt5/src/app/dashboard.component.1.ts
2017-04-19 10:28:31 +01:00

9 lines
174 B
TypeScript

// #docregion
import { Component } from '@angular/core';
@Component({
selector: 'my-dashboard',
template: '<h3>My Dashboard</h3>'
})
export class DashboardComponent { }