diff options
author | crupest <crupest@outlook.com> | 2019-03-07 20:56:50 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-07 20:56:50 +0800 |
commit | 00757c9b23d1c614960d74b54054ccc35129150c (patch) | |
tree | d52f6ae18aad3146ea785d2f6797671772bcd1b5 /Timeline/ClientApp/src/app/home/home.component.ts | |
parent | 4b37c96de2c7d3fe046a6f342d2da8ef03d3c807 (diff) | |
download | timeline-00757c9b23d1c614960d74b54054ccc35129150c.tar.gz timeline-00757c9b23d1c614960d74b54054ccc35129150c.tar.bz2 timeline-00757c9b23d1c614960d74b54054ccc35129150c.zip |
Reorganize with modules.
Diffstat (limited to 'Timeline/ClientApp/src/app/home/home.component.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/home/home.component.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Timeline/ClientApp/src/app/home/home.component.ts b/Timeline/ClientApp/src/app/home/home.component.ts index 2b16eef7..0cb0d0f5 100644 --- a/Timeline/ClientApp/src/app/home/home.component.ts +++ b/Timeline/ClientApp/src/app/home/home.component.ts @@ -1,14 +1,10 @@ -import { Component, OnInit } from '@angular/core'; +import { Component } from '@angular/core'; @Component({ selector: 'app-home', templateUrl: './home.component.html', styleUrls: ['./home.component.css'] }) -export class HomeComponent implements OnInit { +export class HomeComponent { - message = ''; - - ngOnInit() { - } } |