Fixed bug with admin routes never loading. Added basic library view.
This commit is contained in:
parent
3f8a4d7866
commit
79a23ac406
8 changed files with 31 additions and 6 deletions
15
src/app/library/library.component.ts
Normal file
15
src/app/library/library.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-library',
|
||||
templateUrl: './library.component.html',
|
||||
styleUrls: ['./library.component.scss']
|
||||
})
|
||||
export class LibraryComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue