11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
// Initial empty version
|
|
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
template: `
|
|
<h2>CRISIS CENTER</h2>
|
|
<p>Get your crisis here</p>`
|
|
})
|
|
export class CrisisListComponent { }
|