Skip to content
Snippets Groups Projects
MatchingQuestion.js 420 B
Newer Older
chris's avatar
chris committed
import { injectable } from 'inversify';
chris's avatar
chris committed
import Tools from '../lib/Tools';
chris's avatar
chris committed

@injectable()
class MatchingQuestion extends Tools {
chris's avatar
chris committed
  title = 'Add Matching';
  label = 'Matching';
  name = 'Matching';
chris's avatar
chris committed

  get run() {
    return (state, dispatch) => {};
  }

  select = (state, activeViewId) => {};

  get active() {
    return state => {};
  }

  get enable() {
    return state => {};
  }
}
export default MatchingQuestion;