mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
// #docregion
|
|
@Component({
|
|
selector: 'app-main',
|
|
template: `
|
|
<h1>It Works!</h1>
|
|
<div>
|
|
Start editing to see some magic happen :)
|
|
</div>
|
|
`
|
|
})
|
|
export class HostSelectorExampleComponent {
|
|
|
|
}
|
|
// #enddocregion
|