diff --git a/src/app/components/creator/creator.module.ts b/src/app/components/creator/creator.module.ts index 4430128da1da0af28607c00235cb5f51f94c80dc..ac38226e29f4ccf4013b775131f308246beb1dc6 100644 --- a/src/app/components/creator/creator.module.ts +++ b/src/app/components/creator/creator.module.ts @@ -22,6 +22,7 @@ import { HttpClient } from '@angular/common/http'; import { TranslateHttpLoader } from '@ngx-translate/http-loader'; import { ContentCreatorComponent } from './content-creator/content-creator.component'; import { ContentListComponent } from './content-list/content-list.component'; +import { ListStatisticComponent } from './list-statistic/list-statistic.component'; @NgModule({ imports: [ @@ -52,7 +53,8 @@ import { ContentListComponent } from './content-list/content-list.component'; RoomDeleteComponent, RoomEditComponent, ContentCreatorComponent, - ContentListComponent + ContentListComponent, + ListStatisticComponent ], entryComponents: [ RoomCreateComponent, diff --git a/src/app/components/creator/list-statistic/list-statistic.component.html b/src/app/components/creator/list-statistic/list-statistic.component.html new file mode 100644 index 0000000000000000000000000000000000000000..09750008863c3f3e7dcda64e6cbccc9da106b6de --- /dev/null +++ b/src/app/components/creator/list-statistic/list-statistic.component.html @@ -0,0 +1,3 @@ +<p> + list-statistic works! +</p> diff --git a/src/app/components/creator/list-statistic/list-statistic.component.scss b/src/app/components/creator/list-statistic/list-statistic.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/components/creator/list-statistic/list-statistic.component.spec.ts b/src/app/components/creator/list-statistic/list-statistic.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..5e765e87bee159987425115a5fbbed517f96d78f --- /dev/null +++ b/src/app/components/creator/list-statistic/list-statistic.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ListStatisticComponent } from './list-statistic.component'; + +describe('ListStatisticComponent', () => { + let component: ListStatisticComponent; + let fixture: ComponentFixture<ListStatisticComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ ListStatisticComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ListStatisticComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/creator/list-statistic/list-statistic.component.ts b/src/app/components/creator/list-statistic/list-statistic.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..048386df1787a9e0f3ae4827095db7f815d258c4 --- /dev/null +++ b/src/app/components/creator/list-statistic/list-statistic.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-list-statistic', + templateUrl: './list-statistic.component.html', + styleUrls: ['./list-statistic.component.scss'] +}) +export class ListStatisticComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}