10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
template: `
|
|
<p>Dashboard</p>
|
|
`
|
|
})
|
|
export class AdminDashboardComponent { }
|