diff --git a/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.html b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.html new file mode 100644 index 0000000..a4bd3d8 --- /dev/null +++ b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.html @@ -0,0 +1,3 @@ + + + diff --git a/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.scss b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.spec.ts b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.spec.ts new file mode 100644 index 0000000..eab40d5 --- /dev/null +++ b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { MatJumbotronContentComponent } from './mat-jumbotron-content.component'; + +describe('MatJumbotronContentComponent', () => { + let component: MatJumbotronContentComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ MatJumbotronContentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(MatJumbotronContentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.ts b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.ts new file mode 100644 index 0000000..decf7e5 --- /dev/null +++ b/src/module/component/mat-jumbotron/content/mat-jumbotron-content.component.ts @@ -0,0 +1,20 @@ +import {Component, OnInit, TemplateRef, ViewChild} from '@angular/core'; + +@Component({ + selector: 'mat-jumbotron-content', + templateUrl: './mat-jumbotron-content.component.html', + styleUrls: ['./mat-jumbotron-content.component.scss'] +}) +export class MatJumbotronContentComponent implements OnInit { + + /** Template for page outlook content. */ + @ViewChild(TemplateRef) + content: TemplateRef; + + constructor() { + } + + ngOnInit() { + } + +}