-
chris authored6f7ba8f0
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
EditTableService.js 308 B
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;