angular-docs-cn/public/docs/_examples/toh-5/ts/app/dashboard.component.1.ts

10 lines
175 B
TypeScript
Raw Normal View History

2015-12-23 09:42:57 -08:00
// #docregion
2016-04-27 11:28:22 -07:00
import { Component } from '@angular/core';
2015-12-23 09:42:57 -08:00
@Component({
selector: 'my-dashboard',
template: '<h3>My Dashboard</h3>'
})
export class DashboardComponent { }