You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scrutiny/webapp/frontend/src/app/layout/layout.module.ts

33 lines
744 B

import { NgModule } from '@angular/core';
import { TreoDrawerModule } from '@treo/components/drawer';
import { LayoutComponent } from 'app/layout/layout.component';
import { EmptyLayoutModule } from 'app/layout/layouts/empty/empty.module';
import { MaterialLayoutModule } from 'app/layout/layouts/horizontal/material/material.module';
import { SharedModule } from 'app/shared/shared.module';
const modules = [
// Empty
EmptyLayoutModule,
// Horizontal navigation
MaterialLayoutModule,
];
@NgModule({
declarations: [
LayoutComponent,
],
imports : [
TreoDrawerModule,
SharedModule,
...modules
],
exports : [
...modules
]
})
export class LayoutModule
{
}