mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-31 07:26:44 +00:00
Adds components for design of dashboard, selected currency, donate and buy-sell components
This commit is contained in:
5
web/src/app/shared/orders/orders.component.html
Normal file
5
web/src/app/shared/orders/orders.component.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<mat-card class="orders-card" flex="33">
|
||||
<mat-card-header>
|
||||
<mat-card-title>Orders</mat-card-title>
|
||||
</mat-card-header>
|
||||
</mat-card>
|
||||
0
web/src/app/shared/orders/orders.component.scss
Normal file
0
web/src/app/shared/orders/orders.component.scss
Normal file
25
web/src/app/shared/orders/orders.component.spec.ts
Normal file
25
web/src/app/shared/orders/orders.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { OrdersComponent } from './orders.component';
|
||||
|
||||
describe('OrdersComponent', () => {
|
||||
let component: OrdersComponent;
|
||||
let fixture: ComponentFixture<OrdersComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ OrdersComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(OrdersComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
web/src/app/shared/orders/orders.component.ts
Normal file
15
web/src/app/shared/orders/orders.component.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-orders',
|
||||
templateUrl: './orders.component.html',
|
||||
styleUrls: ['./orders.component.scss']
|
||||
})
|
||||
export class OrdersComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user