1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-29 07:43:28 +00:00
Files
browser/libs/components/src/app/app.component.ts
2026-01-22 12:50:13 -05:00

16 lines
413 B
TypeScript

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";
}