phodal/growth

View on GitHub
src/redux/regex/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
export const CHOICE_REGEX = 'CHOICE_REGEX';

export function choiceRegex(regex) {
  return {
    type: CHOICE_REGEX, regex,
  };
}