You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1019 B
30 lines
1019 B
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import {NgZorroAntdModule} from 'ng-zorro-antd';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module';
|
|
import {AppCommonModule} from '../../app-common.module';
|
|
import { ActivityMoneyRoutingModule } from './activity-money-routing.module';
|
|
import { MerchantAllocationComponent } from './merchant-allocation/merchant-allocation.component';
|
|
import { PrizePoolComponent } from './prize-pool/prize-pool.component';
|
|
import { PrizePoolDetailComponent } from './prize-pool-detail/prize-pool-detail.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
MerchantAllocationComponent,
|
|
PrizePoolComponent,
|
|
PrizePoolDetailComponent
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
ActivityMoneyRoutingModule,
|
|
NgZorroAntdModule,
|
|
ReactiveFormsModule,
|
|
FormsModule,
|
|
BreadcrumbModule,
|
|
AppCommonModule,
|
|
]
|
|
})
|
|
export class ActivityMoneyModule { }
|
|
|