mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import 'zone.js/dist/zone';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { AppComponent } from './app.component';
|
|
|
|
@NgModule({
|
|
imports: [BrowserModule],
|
|
declarations: [AppComponent],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule { }
|