mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-12 10:04:44 +01:00
23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
import 'zone.js/dist/zone';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { LoginComponent } from './accounts/login.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
LoginComponent,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule { }
|