mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 04:03:29 +00:00
15 lines
527 B
TypeScript
15 lines
527 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { ChangeDetectionStrategy, Component } from "@angular/core";
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
import { LayoutComponent, NavigationModule } from "@bitwarden/components";
|
|
|
|
@Component({
|
|
selector: "app-desktop-layout",
|
|
standalone: true,
|
|
imports: [CommonModule, RouterModule, LayoutComponent, NavigationModule],
|
|
templateUrl: "./desktop-layout.component.html",
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class DesktopLayoutComponent {}
|