mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 10:43:35 +00:00
Add boilerplate for bitwarden_license (#1032)
This commit is contained in:
27
bitwarden_license/src/app/app.module.ts
Normal file
27
bitwarden_license/src/app/app.module.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { ToasterModule } from 'angular2-toaster';
|
||||
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
|
||||
|
||||
import { DragDropModule } from '@angular/cdk/drag-drop';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
|
||||
import { AppRoutingModule } from '../../../src/app/app-routing.module';
|
||||
import { AppComponent } from '../../../src/app/app.component';
|
||||
import { OssModule } from '../../../src/app/oss.module';
|
||||
import { ServicesModule } from '../../../src/app/services/services.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
OssModule,
|
||||
BrowserAnimationsModule,
|
||||
FormsModule,
|
||||
ServicesModule,
|
||||
ToasterModule.forRoot(),
|
||||
InfiniteScrollModule,
|
||||
DragDropModule,
|
||||
AppRoutingModule,
|
||||
],
|
||||
bootstrap: [AppComponent],
|
||||
})
|
||||
export class AppModule { }
|
||||
Reference in New Issue
Block a user