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

@@ -2,8 +2,8 @@ import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CdkTreeModule } from '@angular/cdk/tree';
import { CommunityListPageComponent } from './community-list-page.component';
import { CommunityListService } from './community-list-service';
import { ThemedCommunityListPageComponent } from './themed-community-list-page.component';
/**
* RouterModule to help navigate to the page with the community list tree
@@ -13,7 +13,7 @@ import { CommunityListService } from './community-list-service';
RouterModule.forChild([
{
path: '',
component: CommunityListPageComponent,
component: ThemedCommunityListPageComponent,
pathMatch: 'full',
data: { title: 'communityList.tabTitle' }
}