77349: Add themeable components - pt. 1

This commit is contained in:
Yana De Pauw
2021-03-03 11:05:52 +01:00
committed by Art Lowel
parent 66463cfc04
commit 8b7a33bff2
81 changed files with 833 additions and 51 deletions

View File

@@ -4,7 +4,14 @@ import { SharedModule } from '../shared/shared.module';
import { CommunityListPageComponent } from './community-list-page.component';
import { CommunityListPageRoutingModule } from './community-list-page.routing.module';
import { CommunityListComponent } from './community-list/community-list.component';
import { ThemedCommunityListPageComponent } from './themed-community-list-page.component';
const DECLARATIONS = [
CommunityListPageComponent,
CommunityListComponent,
ThemedCommunityListPageComponent
];
/**
* The page which houses a title and the community list, as described in community-list.component
*/
@@ -15,9 +22,11 @@ import { CommunityListComponent } from './community-list/community-list.componen
CommunityListPageRoutingModule
],
declarations: [
CommunityListPageComponent,
CommunityListComponent
]
...DECLARATIONS
],
exports: [
...DECLARATIONS,
],
})
export class CommunityListPageModule {