-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.js
31 lines (30 loc) · 854 Bytes
/
store.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { createStore, action } from 'easy-peasy';
export default createStore({
login: {
loggedIn: false,
setLoggedIn: action((state) => {
state.loggedIn = true
}),
},
modals: {
showModal: false,
showLoginModal: false,
showSignupModal: false,
setShowModal: action((state) => {
state.showModal = true
}),
setHideModal: action((state) => {
state.showModal = false
}),
setShowLoginModal: action((state) => {
state.showModal = true
state.showLoginModal = true
state.showSignupModal = false
}),
setShowSignupModal: action((state) => {
state.showModal = true
state.showLoginModal = false
state.showSignupModal = true
})
}
})