Radio button's component class refers to the Event global here, using a HostListener: ``` typescript @HostListener('click', ['$event']) onClick(event: Event) { if (this.disabled) { event.preventDefault(); event.stopPropagation(); return; } ``` This doesn't work in Node. Will need to switch to using the `host` object format.