mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
// 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",
|
|
template: "",
|
|
standalone: false,
|
|
})
|
|
export class AppComponent {
|
|
title = "components";
|
|
}
|