mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
11 lines
232 B
TypeScript
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 {}
|