mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-04 21:05:54 +08:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
/**
|
|
* Generic container that constrains page content width.
|
|
*/
|
|
@Component({
|
|
selector: "bit-container",
|
|
templateUrl: "container.component.html",
|
|
standalone: true,
|
|
})
|
|
export class ContainerComponent {}
|