mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: 'app-root',
|
|
template: `
|
|
<h1>Standalone Bootstrap app</h1>
|
|
Hello Bootstrapped Standalone Component!
|
|
`,
|
|
})
|
|
export class AppComponent {}
|