import { Component } from "@angular/core"; /** * Root component for the component library's Storybook application. */ // 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"; }