import { proxy } from 'valtio' import { useProxy } from 'valtio/utils' const store = proxy( { text: 'Hello World', shelfList: {}, autoRotate: true, autoCruise: false, lookAt: { x: 0, y: 0, z: 0 }, cruiseAgvNo: '2', } ); export const useStore = () => useProxy(store);