1
0
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:
Oscar Hinton
2022-07-28 12:43:00 +02:00
committed by GitHub
parent da341e1317
commit 4fc278b956
7 changed files with 111 additions and 0 deletions

View 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 {}