src/app/component-registry/line-segment-component.js
import { Component } from "../core/models/components/component";
import { ComponentOptions } from "../core/models/components/component-options";
import { LineSegmentDrawer } from "../components/line-segment-component/drawers/line-segment-drawer";
class LineSegmentComponent extends Component {
constructor() {
const options = new ComponentOptions(
"0566268b76d744f28c79e482e26fab3a",
"Line Segment",
"line-segment"
);
super(new LineSegmentDrawer(), options);
}
}
export const lineSegmenComonent = new LineSegmentComponent();