Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 386 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 386 Bytes

Table Component

Pull request: #38

Usage
import { TableComponent } from '@rxdi/ui-kit/table';

@Module({
  components: [TableComponent]
})
export class AppModule {}
<rx-table
    .columns=${['Country', 'Events', 'Time']}
    .data=${[{ country: 'Bulgaria', events: 'First', time: '05.02.1990' }]}
></rx-table>