11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
|
import {NgModule} from "@angular/core";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {VerificationComponent} from "./verification.component";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule],
|
||
|
declarations: [VerificationComponent],
|
||
|
exports: [VerificationComponent]
|
||
|
})
|
||
|
export class VerificationModule {}
|