summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/home.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas/home.js')
-rw-r--r--frontend/src/sagas/home.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/sagas/home.js b/frontend/src/sagas/home.js
new file mode 100644
index 00000000..24f385c9
--- /dev/null
+++ b/frontend/src/sagas/home.js
@@ -0,0 +1,5 @@
+function *homeSaga(wsConnection) {
+ yield console.log('home saga')
+}
+
+export default homeSaga
bgstack15