demo boilerplate done
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>data-grid-demo-home works!</p>
|
||||
@@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DataGridDemoHomeComponent } from './data-grid-demo-home.component';
|
||||
|
||||
describe('DataGridDemoHomeComponent', () => {
|
||||
let component: DataGridDemoHomeComponent;
|
||||
let fixture: ComponentFixture<DataGridDemoHomeComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ DataGridDemoHomeComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(DataGridDemoHomeComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ps-data-grid-demo-home',
|
||||
templateUrl: './data-grid-demo-home.component.html',
|
||||
styleUrls: ['./data-grid-demo-home.component.scss']
|
||||
})
|
||||
export class DataGridDemoHomeComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user