new value

This commit is contained in:
Костя 2025-06-17 15:42:04 +03:00
parent 7a6812ad4e
commit f11393bbfc
2 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@
<clipPath id="a"><path fill="#fff" d="M0 0h982v239H0z" /></clipPath> <clipPath id="a"><path fill="#fff" d="M0 0h982v239H0z" /></clipPath>
</defs> </defs>
</svg> </svg>
<h1>Hello, {{ title }}</h1> <h1>{{ title }}</h1>
<p>Congratulations! Your app is running. 🎉</p> <p>Congratulations! Your app is running. 🎉</p>
</div> </div>
<div class="divider" role="separator" aria-label="Divider"></div> <div class="divider" role="separator" aria-label="Divider"></div>

View File

@ -8,5 +8,5 @@ import { RouterOutlet } from '@angular/router';
styleUrl: './app.component.css' styleUrl: './app.component.css'
}) })
export class App { export class App {
protected title = 'angular-tour-of-heroes'; protected title = 'Tour of Heroes';
} }