Headless CMS and Content Managment Hub
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.
 
 
 
 
 

52 lines
1.1 KiB

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { NgModule } from '@angular/core';
import { SqxFrameworkModule, SqxSharedModule } from '@app/shared';
import {
AppAreaComponent,
AppsMenuComponent,
ForbiddenPageComponent,
HomePageComponent,
InternalAreaComponent,
LeftMenuComponent,
LoginPageComponent,
LogoComponent,
LogoutPageComponent,
NotFoundPageComponent,
ProfileMenuComponent
} from './declarations';
@NgModule({
imports: [
SqxFrameworkModule,
SqxSharedModule
],
exports: [
AppAreaComponent,
HomePageComponent,
ForbiddenPageComponent,
InternalAreaComponent,
NotFoundPageComponent
],
declarations: [
AppAreaComponent,
AppsMenuComponent,
ForbiddenPageComponent,
HomePageComponent,
InternalAreaComponent,
LeftMenuComponent,
LoginPageComponent,
LogoComponent,
LogoutPageComponent,
NotFoundPageComponent,
ProfileMenuComponent
]
})
export class SqxShellModule { }