mirror of
https://github.com/bitwarden/browser
synced 2026-01-29 07:43:28 +00:00
16 lines
413 B
TypeScript
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";
|
|
}
|