You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
378 B
TypeScript
19 lines
378 B
TypeScript
3 years ago
|
import {NgModule} from "@angular/core";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {FileActionBaseComponent} from "./file-action-base/file-action-base.component";
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
FileActionBaseComponent,
|
||
|
],
|
||
|
exports: [
|
||
|
FileActionBaseComponent,
|
||
|
],
|
||
|
imports: [
|
||
|
CommonModule
|
||
|
]
|
||
|
})
|
||
|
export class AppBaseModule {
|
||
|
}
|