Implement companion styling and animations
This commit is contained in:
parent
ab372d6627
commit
7cec5fa2fb
9 changed files with 236 additions and 1 deletions
|
|
@ -1,12 +1,15 @@
|
|||
import create from 'zustand/vanilla';
|
||||
import { Scenes } from './scenes/scenes';
|
||||
import { CompanionState } from './ui/companion';
|
||||
|
||||
export interface State {
|
||||
currentScene: Scenes;
|
||||
companionState: CompanionState;
|
||||
}
|
||||
|
||||
const store = create<State>(() => ({
|
||||
currentScene: Scenes.OVERVIEW,
|
||||
companionState: CompanionState.IDLE,
|
||||
}));
|
||||
|
||||
export default store;
|
||||
|
|
|
|||
Reference in a new issue