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/user-dialog/user-dialog.component.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/user-dialog/user-dialog.component.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/user-dialog/user-dialog.component.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.ts b/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.ts new file mode 100644 index 00000000..0db40952 --- /dev/null +++ b/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-user-dialog', + templateUrl: './user-dialog.component.html', + styleUrls: ['./user-dialog.component.css'] +}) +export class UserDialogComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} |