19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { RbTableComponent } from './rb-table/rb-table.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
RbTableComponent
|
|
],
|
|
imports: [
|
|
CommonModule
|
|
],
|
|
exports: [
|
|
RbTableComponent
|
|
]
|
|
})
|
|
export class RbTableModule { }
|