Add Desktop Notifications

This commit is contained in:
Steve Richter
2020-11-19 23:06:09 -05:00
committed by Deluan Quintão
parent b8d47d1db4
commit 2397a7e464
12 changed files with 99 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
export const SET_NOTIFICATIONS_STATE = 'SET_NOTIFICATIONS_STATE'
export const setNotificationsState = (enabled) => ({
type: SET_NOTIFICATIONS_STATE,
data: enabled,
})