Files
nexus-spa/src/views/pages/empty.ts
Çetin 8b2ff9c1b2 pf2tw
2025-01-03 15:48:50 +03:00

12 lines
291 B
TypeScript

import { Component } from '@angular/core';
@Component({
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 { }