mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
* WIP - access intelligence page * finish access intelligence page * finish access intelligence page * use tab label directive * remove extension swap change * only show when feature flag enabled * Move files under tools ownership --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
20 lines
561 B
TypeScript
20 lines
561 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { TableDataSource, TableModule } from "@bitwarden/components";
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: "tools-notified-members-table",
|
|
templateUrl: "./notified-members-table.component.html",
|
|
imports: [CommonModule, JslibModule, TableModule],
|
|
})
|
|
export class NotifiedMembersTableComponent {
|
|
dataSource = new TableDataSource<any>();
|
|
|
|
constructor() {
|
|
this.dataSource.data = [];
|
|
}
|
|
}
|