Stephn-R/super-react-redux-starter

View on GitHub
src/app/actions/test.jsx

Summary

Maintainability
A
0 mins
Test Coverage
// ────────────────────────────────────────────────────────────────────────────────
// MODULES
 
import {
TEST_LOG,
} from '../constants';
 
// ────────────────────────────────────────────────────────────────────────────────
 
export const SEND_TO_LOG = (msg) => {
return {
type: TEST_LOG,
msg,
};
};