blob: bddb9a0afeaa440177fc1ddb5da09a0f6bfc0749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export const SET_PLAYING = "SET_PLAYING";
export function playSimulation() {
return {
type: SET_PLAYING,
playing: true
}
}
export function pauseSimulation() {
return {
type: SET_PLAYING,
playing: false
}
}
|