CUB-122: Scaffold Control Center React frontend
All checks were successful
Dev Build / build-test (pull_request) Successful in 1m57s

This commit is contained in:
2026-05-07 20:15:30 -04:00
parent cce3e061a7
commit 8da593c450
116 changed files with 10724 additions and 6611 deletions

View File

@@ -0,0 +1,10 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'app-logs-page',
standalone: true,
imports: [],
template: `<p style="color: var(--cc-on-surface-variant)">Logs page — coming soon</p>`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LogsPageComponent {}