import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { UIModule } from '@overflow/shared/ui/ui.module'; import { COMPONENTS } from './component'; import { SERVICES } from './service'; import { MetaStoreModule } from './meta-store.module'; @NgModule({ imports: [ CommonModule, UIModule, MetaStoreModule, ], declarations: [ COMPONENTS, ], exports: [ COMPONENTS, ], providers: [ SERVICES, ], }) export class MetaModule { }