UNPKG

ngx-html-bridge

Version:

An Angular Template Parser to convert Angular templates into an array of standard, static HTML strings.

13 lines (11 loc) 234 B
import { Component } from '@angular/core'; @Component({ selector: 'app-if', imports: [], templateUrl: './if.html', styleUrl: './if.scss' }) export class If { condition: boolean = true; elseIfCondition: boolean = false; }