import { proxy } from 'valtio' import { useProxy } from 'valtio/utils' const store = proxy( { text: 'Hello World', shelfList: {}, } ); export const useStore = () => useProxy(store);