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 | 2f9e5f37c1a7237b45caf57c2606a07fd52955c9 (patch) | |
tree | 1325602710ef4948ea8da6ed365e6333dfdab6f2 /Timeline/ClientApp/src/app/app.module.ts | |
parent | 472cfcb7281cf8ee9dd3f22639c1370f99f7db16 (diff) | |
download | timeline-2f9e5f37c1a7237b45caf57c2606a07fd52955c9.tar.gz timeline-2f9e5f37c1a7237b45caf57c2606a07fd52955c9.tar.bz2 timeline-2f9e5f37c1a7237b45caf57c2606a07fd52955c9.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' }), |