1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00
Files
browser/libs/components/src/app/app.module.ts
2022-06-03 16:24:40 +02:00

14 lines
399 B
TypeScript

import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from "./app.component";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, CommonModule],
providers: [{ provide: "WINDOW", useValue: window }],
bootstrap: [AppComponent],
})
export class AppModule {}