13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { CommandModalComponent } from './command-modal/command-modal.component';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule
|
|
],
|
|
declarations: [CommandModalComponent]
|
|
})
|
|
export class CommandModalModule { }
|