Add party details to state
This commit is contained in:
parent
b68cca53a7
commit
094d2e83d6
1 changed files with 9 additions and 0 deletions
|
|
@ -6,6 +6,12 @@ interface AppState {
|
|||
party: {
|
||||
id: string | undefined,
|
||||
editable: boolean,
|
||||
name: {
|
||||
en: string,
|
||||
jp: string
|
||||
} | undefined,
|
||||
description: string | undefined,
|
||||
raid: Raid | undefined,
|
||||
element: number,
|
||||
extra: boolean
|
||||
},
|
||||
|
|
@ -30,6 +36,9 @@ export const initialAppState: AppState = {
|
|||
party: {
|
||||
id: undefined,
|
||||
editable: false,
|
||||
name: undefined,
|
||||
description: undefined,
|
||||
raid: undefined,
|
||||
element: 0,
|
||||
extra: false
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue