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.
23 lines
570 B
23 lines
570 B
import { NgModule } from "@angular/core";
|
|
import { BrowserModule } from "@angular/platform-browser";
|
|
|
|
import { AppComponent } from "./app.component";
|
|
import { FormsModule } from "@angular/forms";
|
|
import { RecordKeyChord } from "./directives/record-key-chord.directive";
|
|
import { PlanDisplayModule } from "./plan-display/plan-display.module";
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
RecordKeyChord
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule,
|
|
PlanDisplayModule,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule { }
|