summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-lib-test-app/src/app/app.module.ts
blob: f79dc57477275e699da6e86a121cd252076eee31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { RdpModule } from 'portalsdk-tag-lib'
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    RdpModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }