src/app/features/dashboard-widgets/birthday-dashboard-widget/birthday-dashboard-widget.module.ts
import { NgModule } from "@angular/core";
import { ComponentRegistry } from "../../../dynamic-components";
@NgModule({})
export class BirthdayDashboardWidgetModule {
constructor(components: ComponentRegistry) {
components.addAll([
[
"BirthdayDashboard",
() =>
import("./birthday-dashboard/birthday-dashboard.component").then(
(c) => c.BirthdayDashboardComponent,
),
],
]);
}
}