ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
17 lines (14 loc) • 480 B
text/typescript
export default `import { NgModule } from '@angular/core';
// import { STWidgetRegistry } from '@ohayo/components/st';
import { SharedModule } from '../shared.module';
export const STWIDGET_COMPONENTS = [];
@NgModule({
declarations: STWIDGET_COMPONENTS,
imports: [SharedModule],
exports: [...STWIDGET_COMPONENTS],
})
export class STWidgetModule {
// constructor(widgetRegistry: STWidgetRegistry) {
// widgetRegistry.register(STImgWidget.KEY, STImgWidget);
// }
}`;