blob: 15eb6d5fcacd94d51a03791898f188e0d61e7b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { CommonModule } from '@angular/common';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { DragCopyComponent } from './drag-copy/drag-copy.component';
@NgModule({
declarations: [
AppComponent,
DragCopyComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
CommonModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
|