This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
11 lines
277 B
HTML
11 lines
277 B
HTML
<h1>Reactive Forms</h1>
|
|
|
|
<nav>
|
|
<a (click)="toggleEditor('name')">Name Editor</a>
|
|
<a (click)="toggleEditor('profile')">Profile Editor</a>
|
|
</nav>
|
|
|
|
<app-name-editor *ngIf="showNameEditor"></app-name-editor>
|
|
|
|
<app-profile-editor *ngIf="showProfileEditor"></app-profile-editor>
|