Skip to content
Snippets Groups Projects
Commit b3c9d059 authored by chris's avatar chris
Browse files

new toolgroup files

parent f1520d6c
No related branches found
No related tags found
1 merge request!339new toolgroup files
...@@ -70,7 +70,7 @@ const Editors = () => { ...@@ -70,7 +70,7 @@ const Editors = () => {
case 'ncbi': case 'ncbi':
return <NCBI />; return <NCBI />;
default: default:
return <Editoria />; return <HHMI />;
} }
}; };
......
import { injectable, inject } from 'inversify';
import ToolGroup from '../../lib/ToolGroup';
@injectable()
class MultipleDropDown extends ToolGroup {
tools = [];
constructor() {
super();
this.tools = [];
}
}
export default MultipleDropDown;
import Service from '../../Service';
import MultipleDropDown from './MultipleDropDown';
class MultipleDropDownToolGroupService extends Service {
register() {
this.container.bind('MultipleDropDown').to(MultipleDropDown);
}
}
export default MultipleDropDownToolGroupService;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment