Files
psp_panel/src/app/pages/empty/empty.ts
T
2025-01-07 13:04:10 +03:00

13 lines
318 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-empty',
standalone: true,
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>
</div>`
})
export class Empty { }