Teso Business 2.0 angular source code
https://bacwaredev.barhendev.com/teso
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.
20 lines
460 B
20 lines
460 B
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
import { EmptyLayoutComponent } from 'app/layout/layouts/empty/empty.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
EmptyLayoutComponent
|
|
],
|
|
imports : [
|
|
RouterModule,
|
|
SharedModule
|
|
],
|
|
exports : [
|
|
EmptyLayoutComponent
|
|
]
|
|
})
|
|
export class EmptyLayoutModule
|
|
{
|
|
}
|
|
|