[web-app] 菜单功能布局大致样式定义

This commit is contained in:
tomsun28
2021-11-28 14:58:20 +08:00
parent cdee4add2a
commit 034b6c175c
21 changed files with 384 additions and 1663 deletions

View File

@@ -0,0 +1,14 @@
import { NgModule, Type } from '@angular/core';
import { SharedModule } from '@shared';
import { MonitorRoutingModule } from './monitor-routing.module';
const COMPONENTS: Type<void>[] = [];
@NgModule({
imports: [
SharedModule,
MonitorRoutingModule
],
declarations: COMPONENTS,
})
export class MonitorModule { }