Home Reference Source Repository

src/app/component-registry/intersection-component.js

import { Component } from "../core/models/components/component";
import { ComponentOptions } from "../core/models/components/component-options";
import { IntersectionDrawer } from "../components/intersection-component/drawers/intersection-drawer";
export class IntersectionComponent extends Component {
  constructor() {
    const options = new ComponentOptions(
      "e60c06bc485546fe89f3565e9f8758e7",
      "Intersection",
      "intersection"
    );
    super(new IntersectionDrawer(), options);
  }
}

export const intersectionComponent = new IntersectionComponent();