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/user-dialog/user-dialog.component.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/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() { + } + +} |