mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
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.
15 lines
438 B
TypeScript
15 lines
438 B
TypeScript
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 {}
|