mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
[PM-8517] Create web specific layout (#9209)
We currently duplicate some logic between our layouts. In an effort to streamline our experience I'm exploring if we can create a web specific layout that handles some of this.
This commit is contained in:
14
apps/web/src/app/layouts/web-layout.module.ts
Normal file
14
apps/web/src/app/layouts/web-layout.module.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { NavigationModule } from "@bitwarden/components";
|
||||
|
||||
import { WebLayoutComponent } from "./web-layout.component";
|
||||
import { WebSideNavComponent } from "./web-side-nav.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [WebLayoutComponent, WebSideNavComponent],
|
||||
exports: [NavigationModule, WebLayoutComponent, WebSideNavComponent],
|
||||
declarations: [],
|
||||
providers: [],
|
||||
})
|
||||
export class WebLayoutModule {}
|
||||
Reference in New Issue
Block a user