diff options
author | crupest <crupest@outlook.com> | 2019-02-26 18:18:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-26 18:18:29 +0800 |
commit | d55648859a53dce157939d96a20bd5725b3a1fae (patch) | |
tree | b3956c48e50313008b44eca761b6afdb7cd6982f /Timeline/ClientApp/src/app/app.module.ts | |
parent | cd28058f07fda57f6569316723f776f1b9b80e50 (diff) | |
download | timeline-d55648859a53dce157939d96a20bd5725b3a1fae.tar.gz timeline-d55648859a53dce157939d96a20bd5725b3a1fae.tar.bz2 timeline-d55648859a53dce157939d96a20bd5725b3a1fae.zip |
Create user dialog.
Diffstat (limited to 'Timeline/ClientApp/src/app/app.module.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/app.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/app.module.ts b/Timeline/ClientApp/src/app/app.module.ts index 86511be8..1f5e71a6 100644 --- a/Timeline/ClientApp/src/app/app.module.ts +++ b/Timeline/ClientApp/src/app/app.module.ts @@ -13,13 +13,15 @@ import { AppComponent } from './app.component'; import { HomeComponent } from './home/home.component'; import { TodoListPageComponent } from './todo-list-page/todo-list-page.component'; import { TodoItemComponent } from './todo-item/todo-item.component'; +import { UserDialogComponent } from './user-dialog/user-dialog.component'; @NgModule({ declarations: [ AppComponent, HomeComponent, TodoListPageComponent, - TodoItemComponent + TodoItemComponent, + UserDialogComponent ], imports: [ BrowserModule.withServerTransition({ appId: 'ng-cli-universal' }), |