mirror of
https://github.com/bitwarden/browser
synced 2026-02-03 10:13:31 +00:00
14 lines
429 B
TypeScript
14 lines
429 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { BaseAppComponent } from "./base-app.component";
|
|
|
|
// FIXME(https://bitwarden.atlassian.net/browse/CL-764): Migrate to OnPush
|
|
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
|
|
@Component({
|
|
selector: "app-root",
|
|
styles: [],
|
|
templateUrl: "app.component.html",
|
|
standalone: false,
|
|
})
|
|
export class AppComponent extends BaseAppComponent {}
|