Added skeleton code for Library -> Series detail pages. Added a card component to keep a lot of the logic and design consistent between screens. Added ability to see your libraries and open them up.
This commit is contained in:
parent
fdc0c5753d
commit
efdbe5eb35
22 changed files with 197 additions and 15 deletions
|
|
@ -2,17 +2,19 @@ import { NgModule } from '@angular/core';
|
|||
import { CommonModule } from '@angular/common';
|
||||
import { RegisterMemberComponent } from './register-member/register-member.component';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { CardItemComponent } from './card-item/card-item.component';
|
||||
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [RegisterMemberComponent],
|
||||
declarations: [RegisterMemberComponent, CardItemComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
ReactiveFormsModule
|
||||
],
|
||||
exports: [
|
||||
RegisterMemberComponent
|
||||
RegisterMemberComponent,
|
||||
CardItemComponent
|
||||
]
|
||||
})
|
||||
export class SharedModule { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue