Skip to content

Commit

Permalink
feat: first step stats
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Aug 11, 2024
1 parent defb7ca commit e5268f9
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>portfolio-stats works!</p>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* Copyright 2019 Sven Loesekann
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright 2019 Sven Loesekann
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { PortfolioStatsComponent } from './portfolio-stats.component';

/*
describe('PortfolioStatsComponent', () => {
let component: PortfolioStatsComponent;
let fixture: ComponentFixture<PortfolioStatsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PortfolioStatsComponent]
})
.compileComponents();
fixture = TestBed.createComponent(PortfolioStatsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
*/
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**
* Copyright 2019 Sven Loesekann
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import { Component } from '@angular/core';

@Component({
selector: 'app-portfolio-stats',
templateUrl: './portfolio-stats.component.html',
styleUrl: './portfolio-stats.component.scss'
})
export class PortfolioStatsComponent {

}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { PortfolioTimechartComponent } from "./components/portfolio-timechart/po
import { CalendarService } from "./service/calendar.service";
import { NewsListComponent } from "./components/news-list/news-list.component";
import { NewsService } from "./service/news.service";
import { PortfolioStatsComponent } from "./components/portfolio-stats/portfolio-stats.component";

@NgModule({
declarations: [
Expand All @@ -38,6 +39,7 @@ import { NewsService } from "./service/news.service";
PortfolioSectorsComponent,
PortfolioTimechartComponent,
NewsListComponent,
PortfolioStatsComponent
],
imports: [
BaseModule,
Expand Down

0 comments on commit e5268f9

Please sign in to comment.