mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 17:30:14 +01:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { style } from '@angular/core/core';
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'hot-tables',
|
|
styleUrls: ['./hotTables.scss'],
|
|
template: `
|
|
<div class="container">
|
|
<handsontable-section class="col-md-12"></handsontable-section>
|
|
</div>
|
|
`
|
|
})
|
|
export class HotTablesComponent {
|
|
}
|