import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { RuleComponent } from './rule.component'; @NgModule({ declarations: [RuleComponent], exports: [RuleComponent], imports: [CommonModule, NgxSkeletonLoaderModule], providers: [], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class GfRuleModule {}