src/app/component-registry/selector-component.js
import { Component } from "../core/models/components/component";
import { ComponentOptions } from "../core/models/components/component-options";
import { SelectorDrawer } from "../components/selector-component/drawers/selector-drawer";
import { COMPONENT_TYPE } from "../core/enums/component-type-enum";
export class SelectorComponent extends Component {
constructor() {
const options = new ComponentOptions(
"15d1b49619c946809fdb6922f4d7b657",
"Selector",
"selector",
COMPONENT_TYPE.SELECTOR
);
super(new SelectorDrawer(), options);
}
}
export const selectorComponent = new SelectorComponent();