Using A Component
prerequisites
import { Component } from "@angular/core"; (
@Component({
selector: "my-component",
template: `
<h1> My Component </h1>
`,
styles: [['h1 { font-weight: normal; }']]
})
export class MyComponent {}Using the Component
<my-component></my-component>Last updated