mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 22:53:44 +00:00
14 lines
433 B
TypeScript
14 lines
433 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { CellDirective } from "./cell.directive";
|
|
import { RowDirective } from "./row.directive";
|
|
import { TableComponent } from "./table.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
declarations: [TableComponent, CellDirective, RowDirective],
|
|
exports: [TableComponent, CellDirective, RowDirective],
|
|
})
|
|
export class TableModule {}
|