{{ device.name || 'Unnamed' }}
{{ device.address }}
import { Component, signal, OnInit } from "../../core/index"; import { bootstrapApplication } from "../../platform-browser/browser"; // Symulacja IconComponent @Component({ selector: 'test-icon', template: 'Icon', }) class TestIconComponent {} // Symulacja Device interface interface Device { address: string; name: string; offline: boolean; } // Reprodukcja komponentu DevicesComponent z /web/IoT/Ant @Component({ selector: 'test-devices', template: `