aboutsummaryrefslogtreecommitdiff
path: root/modern/src/actions/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/actions/index.js')
-rw-r--r--modern/src/actions/index.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/modern/src/actions/index.js b/modern/src/actions/index.js
new file mode 100644
index 0000000..5527810
--- /dev/null
+++ b/modern/src/actions/index.js
@@ -0,0 +1,19 @@
+export const updateDevices = devices => ({
+ type: 'UPDATE_DEVICES',
+ devices
+})
+
+export const updatePositions = positions => ({
+ type: 'UPDATE_POSITIONS',
+ positions
+});
+
+export const updateEvents = events => ({
+ type: 'UPDATE_EVENTS',
+ events
+})
+
+export const selectDevice = device => ({
+ type: 'SELECT_DEVICE',
+ device
+})