phodal/growth

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

Summary

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

export function saveArticle(regex) {
  return {
    type: SAVE_ARTICLE, regex,
  };
}