1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00
Files
browser/libs/components/src/container/container.component.ts
Oscar Hinton 26fb7effd3 Remove standalone true from platform and UIF (#15032)
Remove standalone: true from every instance since it's the default as of Angular 19.
2025-06-02 20:03:04 +02:00

11 lines
232 B
TypeScript

import { Component } from "@angular/core";
/**
* Generic container that constrains page content width.
*/
@Component({
selector: "bit-container",
templateUrl: "container.component.html",
})
export class ContainerComponent {}