dialog - hint tutorials exists

This commit is contained in:
Delucse
2020-10-17 11:09:25 +02:00
parent a0fd63a2ca
commit 5999daa332
8 changed files with 148 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
import { VISIT } from './types';
export const visitPage = () => (dispatch) => {
dispatch({
type: VISIT
});
};
+3
View File
@@ -27,3 +27,6 @@ export const BUILDER_CHANGE_ORDER = 'BUILDER_CHANGE_ORDER';
export const BUILDER_DELETE_PROPERTY = 'BUILDER_DELETE_PROPERTY';
export const BUILDER_ERROR = 'BUILDER_ERROR';
export const PROGRESS = 'PROGRESS';
export const VISIT = 'VISIT';