Collection Redesign (#500)
* Setup UI for the collection redesign. * Implemented collection details page
This commit is contained in:
parent
226d7408bf
commit
51ea41fc35
16 changed files with 289 additions and 42 deletions
23
UI/Web/src/app/collections/collections.module.ts
Normal file
23
UI/Web/src/app/collections/collections.module.ts
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { CollectionDetailComponent } from './collection-detail/collection-detail.component';
|
||||
import { SharedModule } from '../shared/shared.module';
|
||||
import { CollectionsRoutingModule } from './collections-routing.module';
|
||||
import { CardsModule } from '../cards/cards.module';
|
||||
import { AllCollectionsComponent } from './all-collections/all-collections.component';
|
||||
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AllCollectionsComponent,
|
||||
CollectionDetailComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
SharedModule,
|
||||
CardsModule,
|
||||
CollectionsRoutingModule,
|
||||
]
|
||||
})
|
||||
export class CollectionsModule { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue