Files
Control-Center/frontend/src/app/pages/hub/hub-page.component.ts

15 lines
423 B
TypeScript
Raw Normal View History

2026-04-25 19:02:57 +00:00
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'app-hub-page',
standalone: true,
imports: [],
template: `
<div class="hub-page">
<p class="hub-page__placeholder">Command Hub Fleet status grid will render here</p>
</div>
`,
styleUrl: './hub-page.component.scss',
2026-04-25 19:02:57 +00:00
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class HubPageComponent {}