mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
[CL-24] Add tables (#2950)
This commit is contained in:
13
libs/components/src/table/table.module.ts
Normal file
13
libs/components/src/table/table.module.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user