mirror of
https://github.com/JHUAPL/PINE.git
synced 2026-01-09 14:38:06 -05:00
Remove code that was mistakenly left in public branch.
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
.btn {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
white-space: normal;
|
||||
border-radius: 20px;
|
||||
border: 1px solid darkgrey;
|
||||
}
|
||||
@@ -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>
|
||||
@@ -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();
|
||||
});
|
||||
});
|
||||
@@ -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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user