mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
|
import { IonicModule } from "@ionic/angular";
|
|
|
|
import { TextareaRoutingModule } from "./textarea-routing.module";
|
|
import { TextareaComponent } from "./textarea.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
IonicModule,
|
|
TextareaRoutingModule
|
|
],
|
|
declarations: [
|
|
TextareaComponent
|
|
]
|
|
})
|
|
export class TextareaModule { }
|