Files
psp_panel/src/app/pages/empty/empty.ts
T

13 lines
318 B
TypeScript
Raw Normal View History

2024-12-30 13:29:44 +03:00
import { Component } from '@angular/core';
@Component({
2025-01-07 13:04:10 +03:00
selector: 'app-empty',
2024-12-30 13:29:44 +03:00
standalone: true,
2025-01-03 15:48:50 +03:00
template: `
<div class="card">
<div class="font-semibold text-xl mb-4">Empty Page</div>
<p>Use this page to start from scratch and place your custom content.</p>
2024-12-30 13:29:44 +03:00
</div>`
})
export class Empty { }