Save raids in state
This commit is contained in:
parent
ed59762c71
commit
499dde433e
1 changed files with 4 additions and 2 deletions
|
|
@ -27,7 +27,8 @@ interface AppState {
|
||||||
},
|
},
|
||||||
search: {
|
search: {
|
||||||
sourceItem: GridCharacter | GridWeapon | GridSummon | undefined
|
sourceItem: GridCharacter | GridWeapon | GridSummon | undefined
|
||||||
}
|
},
|
||||||
|
raids: Raid[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export const initialAppState: AppState = {
|
export const initialAppState: AppState = {
|
||||||
|
|
@ -55,7 +56,8 @@ export const initialAppState: AppState = {
|
||||||
},
|
},
|
||||||
search: {
|
search: {
|
||||||
sourceItem: undefined
|
sourceItem: undefined
|
||||||
}
|
},
|
||||||
|
raids: []
|
||||||
}
|
}
|
||||||
|
|
||||||
export const appState = proxy(initialAppState)
|
export const appState = proxy(initialAppState)
|
||||||
Loading…
Reference in a new issue