Remove code that was mistakenly left in public branch.

This commit is contained in:
Laura Glendenning
2020-11-04 13:54:03 -05:00
parent ebfc2c6a43
commit 9267fb78e3
4 changed files with 0 additions and 75 deletions

View File

@@ -1,7 +0,0 @@
.btn {
width: 100%;
height: 100%;
white-space: normal;
border-radius: 20px;
border: 1px solid darkgrey;
}

View File

@@ -1,23 +0,0 @@
<mat-card>
<mat-grid-list cols="5" rowHeight="100px">
<mat-grid-tile></mat-grid-tile>
<mat-grid-tile>
<button mat-raised-button class="btn background-accent-color-lighter" [routerLink]="['/' + PATHS.collection.view]">
View My Collections
</button>
</mat-grid-tile>
<mat-grid-tile></mat-grid-tile>
<mat-grid-tile>
<button mat-raised-button class="btn background-accent-color-lighter" [routerLink]="['/' + PATHS.collection.add]">
Add Collection
</button>
</mat-grid-tile>
<mat-grid-tile></mat-grid-tile>
</mat-grid-list>
</mat-card>

View File

@@ -1,25 +0,0 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HomeComponent } from './home.component';
describe('HomeComponent', () => {
let component: HomeComponent;
let fixture: ComponentFixture<HomeComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HomeComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HomeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -1,20 +0,0 @@
import { Component, OnInit } from "@angular/core";
import { PATHS } from "../../app.paths";
@Component({
selector: "app-home",
templateUrl: "./home.component.html",
styleUrls: ["./home.component.css"]
})
export class HomeComponent implements OnInit {
public readonly PATHS = PATHS;
constructor() { }
ngOnInit() {
}
}