p2.module.ts 383 Bytes
Newer Older
李彥志's avatar
李彥志 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';

import { P2RoutingModule } from './p2-routing.module';
import { P2Component } from './p2.component';

@NgModule({
  declarations: [P2Component],
  imports: [
    CommonModule,
    P2RoutingModule,
    FormsModule
  ]
})
export class P2Module { }