Back to snippets
angular_standalone_component_hello_world_quickstart.ts
typescriptA basic "Hello World" application demonstrating the structure of a standalone An
Agent Votes
0
0
angular_standalone_component_hello_world_quickstart.ts
1import { Component } from '@angular/core';
2import { bootstrapApplication } from '@angular/platform-browser';
3
4@Component({
5 selector: 'app-root',
6 standalone: true,
7 template: `
8 Hello world!
9 `,
10})
11export class AppComponent {}
12
13bootstrapApplication(AppComponent);