scrimba
Build Your First Angular app
Overview - Angular Components & Modules
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Overview - Angular Components & Modules
AboutCommentsNotes
Overview - Angular Components & Modules
Expand for more info
src
app
app.component.ts
run
preview
console
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-root',
template: `
<h1>Hello World</h1>
`
})
export class AppComponent implements OnInit {

constructor() { }

ngOnInit() {

}

}
Console
"Angular is running in the development mode. Call enableProdMode() to enable the production mode."
,
customers
-4:52