mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-13 10:24:20 +01:00
28 lines
719 B
TypeScript
28 lines
719 B
TypeScript
import 'core-js';
|
|
import 'zone.js/dist/zone';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
import { ServicesModule } from './services/services.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { LoginComponent } from './accounts/login.component';
|
|
import { VaultComponent } from './vault/vault.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
ServicesModule,
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
LoginComponent,
|
|
VaultComponent,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule { }
|