mirror of
https://github.com/LucasVbr/todo-list.git
synced 2026-05-13 17:22:04 +00:00
Remake the todo-list with Angular
This commit is contained in:
+10
-2
@@ -2,13 +2,21 @@ 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
|
||||
AppComponent,
|
||||
TodoListComponent,
|
||||
TodoItemComponent,
|
||||
TodoInputComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule
|
||||
BrowserModule,
|
||||
FormsModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
|
||||
Reference in New Issue
Block a user