scrimba
Build Your First Angular app
Course Summary
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

AboutCommentsNotes
Course Summary
Expand for more info
src
app
app.component.ts
run
preview
console
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-root',
template: `
<router-outlet></router-outlet>
`
})
export class AppComponent implements OnInit {
constructor() { }

ngOnInit() {

}

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