diff --git a/index/src/app/view/admin/admin-index/admin-index.component.html b/index/src/app/view/admin/admin-index/admin-index.component.html deleted file mode 100644 index 1b00d67..0000000 --- a/index/src/app/view/admin/admin-index/admin-index.component.html +++ /dev/null @@ -1 +0,0 @@ -

admin-index works!

diff --git a/index/src/app/view/admin/admin-index/admin-index.component.less b/index/src/app/view/admin/admin-index/admin-index.component.less deleted file mode 100644 index e69de29..0000000 diff --git a/index/src/app/view/admin/admin-index/admin-index.component.ts b/index/src/app/view/admin/admin-index/admin-index.component.ts deleted file mode 100644 index e5366a9..0000000 --- a/index/src/app/view/admin/admin-index/admin-index.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-admin-index', - templateUrl: './admin-index.component.html', - styleUrls: ['./admin-index.component.less'] -}) -export class AdminIndexComponent implements OnInit { - - constructor() { } - - ngOnInit(): void { - } - -} diff --git a/index/src/app/view/admin/admin-index/admin-index.module.ts b/index/src/app/view/admin/admin-index/admin-index.module.ts deleted file mode 100644 index b14bf1c..0000000 --- a/index/src/app/view/admin/admin-index/admin-index.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -import {NgModule} from '@angular/core'; -import {CommonModule} from '@angular/common'; -import {RouterModule} from '@angular/router'; -import {AdminIndexComponent} from './admin-index.component'; - - -@NgModule({ - declarations: [ - AdminIndexComponent - ], - imports: [ - CommonModule, - RouterModule.forChild([{path: '', component: AdminIndexComponent}]) - ] -}) -export class AdminIndexModule { -}