Root Component
index.html
index.html<!doctype html>
<html lang="en">
<head>
....
</head>
<body>
<wt-root></wt-root>
</body>
</html>AppComponent
AppComponentimport { Component } from '@angular/core';
@Component({
selector: 'wt-root',
template: `
<h1>Hello real 🌎!</div>
`
})
export class AppComponent {
}@Component
@Component
Code source
Démo StackBlitz
Mis à jour