UNPKG

443 BPlain TextView Raw
1import { NgModule } from '@angular/core';
2import { BrowserModule } from '@angular/platform-browser';
3import { FormsModule } from '@angular/forms';
4
5import { TemplationModule } from 'angular-templation';
6
7import { AppComponent,TestComponent } from './app.component';
8
9@NgModule({
10 imports: [BrowserModule, FormsModule, TemplationModule],
11 declarations: [AppComponent, TestComponent],
12 bootstrap: [AppComponent]
13})
14export class AppModule {
15}