20 lines
444 B
TypeScript
20 lines
444 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
import { LayoutComponent } from './layout/layout.component';
|
|
import { ServerToolbarComponent } from './server-toolbar/server-toolbar.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
LayoutComponent,
|
|
ServerToolbarComponent,
|
|
],
|
|
imports: [
|
|
SharedModule
|
|
],
|
|
exports: [
|
|
LayoutComponent,
|
|
ServerToolbarComponent,
|
|
]
|
|
})
|
|
export class CoreModule { }
|