p5.module.ts 383 Bytes
Newer Older
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 { P5RoutingModule } from './p5-routing.module';
import { P5Component } from './p5.component';

@NgModule({
  declarations: [P5Component],
  imports: [
    CommonModule,
    P5RoutingModule,
    FormsModule
  ]
})
export class P5Module { }