mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 19:43:45 +00:00
* Add README for adding policy UI in Admin Console * Update existing policy UIs to be standalone * Reorganize files and use barrel files * Use token to inject policies into PolicyListService
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { AppComponent as BaseAppComponent } from "@bitwarden/web-vault/app/app.component";
|
|
|
|
@Component({
|
|
selector: "app-root",
|
|
templateUrl: "../../../../apps/web/src/app/app.component.html",
|
|
standalone: false,
|
|
})
|
|
export class AppComponent extends BaseAppComponent {}
|