blob: b8ff657314d2fdc24865f1fd07d08924288a08f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import * as types from '../../types'
// import { store } from '../../store'
export const updateTemporaryTile = data => dispatch => {
dispatch({ type: types.tile.update_temporary_tile, data })
}
export const clearTemporaryTile = () => dispatch => {
dispatch({ type: types.tile.clear_temporary_tile })
}
|