test data-grid
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { DataGridComponent } from './data-grid/data-grid.component';
|
||||
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [],
|
||||
declarations: [DataGridComponent],
|
||||
imports: [
|
||||
CommonModule
|
||||
]
|
||||
],
|
||||
exports: [DataGridComponent]
|
||||
})
|
||||
export class DataGridModule { }
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
<table>
|
||||
<tr>
|
||||
<th>some header</th>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ps-data-grid',
|
||||
templateUrl: './data-grid.component.html',
|
||||
styleUrls: ['./data-grid.component.scss']
|
||||
})
|
||||
export class DataGridComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,4 +2,5 @@
|
||||
* Public API Surface of ngx-cdk-ui
|
||||
*/
|
||||
|
||||
export * from './lib/data-grid/data-grid.module';
|
||||
export * from './lib/data-grid/data-grid.module';
|
||||
export * from './lib/data-grid/data-grid/data-grid.component';
|
||||
Reference in New Issue
Block a user