15 lines
337 B
TypeScript
15 lines
337 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
standalone: true,
|
||
|
|
template: `<div class="grid">
|
||
|
|
<div class="col-12">
|
||
|
|
<div class="card">
|
||
|
|
<h4>Empty Page</h4>
|
||
|
|
<p>This is your empty page template to start building beautiful applications.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>`
|
||
|
|
})
|
||
|
|
export class Empty { }
|