Impülement intro questions

This commit is contained in:
Dennis Schoepf 2021-08-02 17:01:27 +02:00
parent 1e5b627e26
commit 47a7ec98ea
5 changed files with 266 additions and 10 deletions

View file

@ -21,6 +21,7 @@ export interface State {
revealables: RevealableInterface[];
finishedSubProjects: string[];
setProjectMetadata: (projectName: string) => void;
participantAnonymous: boolean;
}
const store = create<State>(
@ -28,6 +29,7 @@ const store = create<State>(
currentIntroStep: 1,
currentScene: Scenes.OVERVIEW,
currentSubproject: null,
participantAnonymous: false,
companionState: CompanionState.IDLE,
infoMessageShown: false,
infoMessages: [],