13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
|
import {NgModule} from "@angular/core";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {HowComponent} from "./how.component";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule],
|
||
|
declarations: [HowComponent],
|
||
|
exports: [HowComponent]
|
||
|
})
|
||
|
export class HowModule {
|
||
|
|
||
|
}
|