1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 19:43:45 +00:00
Files
browser/bitwarden_license/bit-web/src/app/app.component.ts
Thomas Rittson afe3cbd78f [PM-25306] Policy documentation and reorganization (#16193)
* 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
2025-09-11 17:04:48 +05:30

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