[object Object]
function sum(n1: number, n2: number): number {
return n1 + n2;
}
@Component({
template: `
@if (show()) {
<div>Hi there</div>
} @else {
<div>Booo!</div>
<button (click)="show.set(false)">Show</button>
}
`
})
export class MyCmp {
show = signal(true);
}
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]