Skip to content
Snippets Groups Projects
EditTableService.js 308 B
Newer Older
import Service from "wax-prosemirror-core/src/services/Service";
import TableDropDownOptions from "./TableDropDownOptions";

class EditTableService extends Service {
  boot() {}

  register() {
    this.container.bind("TableDropDownOptions").to(TableDropDownOptions);
  }
}

export default EditTableService;