diff options
Diffstat (limited to 'client/actions/index.js')
| -rw-r--r-- | client/actions/index.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/client/actions/index.js b/client/actions/index.js index ddbf9ee..0a163ae 100644 --- a/client/actions/index.js +++ b/client/actions/index.js @@ -1,3 +1,12 @@ +export const audioPlayFile = (file) => ({ + type: 'AUDIO_PLAY_FILE', + file: file +}) + +export const audioPause = () => ({ + type: 'AUDIO_PAUSE', +}) + export const setContent = (content) => ({ type: 'SET_CONTENT', file: content |
