DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

ANGULAR Reference: Angular Introduction

Quick reference for Angular Introduction.

Read time: 1 min • Words: 16
My Progress

ANGULAR Reference — Angular Introduction

Quick summary of Angular Introduction with syntax and example.

Syntax

@Component({ ... })

Example

import { Component } from "@angular/core";

@Component({
  selector: "app-root",
  template: "<h1>Hello Angular</h1>"
})
export class AppComponent {}