smarti/src/actions/generalActions.js
2020-10-17 11:09:25 +02:00

9 lines
120 B
JavaScript

import { VISIT } from './types';
export const visitPage = () => (dispatch) => {
dispatch({
type: VISIT
});
};