Skip to content
Snippets Groups Projects
MatchingQuestion.js 434 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 {
  title = 'Change to Block Quote';
  label = 'Block Quote';
  name = 'BlockQuote';

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

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

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

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