Fixed bug with admin routes never loading. Added basic library view.

This commit is contained in:
Joseph Milazzo 2020-12-15 11:07:19 -06:00
parent 3f8a4d7866
commit 79a23ac406
8 changed files with 31 additions and 6 deletions

View 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 {
}
}