mirror of
https://github.com/LucasVbr/todo-list.git
synced 2026-05-13 17:22:04 +00:00
25 lines
655 B
TypeScript
25 lines
655 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { TodoListComponent } from './todo-list/todo-list.component';
|
|
import { TodoItemComponent } from './todo-item/todo-item.component';
|
|
import { TodoInputComponent } from './todo-input/todo-input.component';
|
|
import {FormsModule} from "@angular/forms";
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
TodoListComponent,
|
|
TodoItemComponent,
|
|
TodoInputComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|