scrimba
Build Your First Angular app
Overview - Data Binding in Angular
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 - Data Binding in Angular
AboutCommentsNotes
Overview - Data Binding in Angular
Expand for more info
src
app
app.module.ts
run
preview
console
import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { CustomersModule } from './customers/customers.module';
import { AppComponent } from './app.component';

@NgModule({
imports: [ BrowserModule, CustomersModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Console
"Angular is running in the development mode. Call enableProdMode() to enable the production mode."
,
customers
-6:08