import { proxy, useSnapshot } from 'valtio'; const GlobalState = proxy({ me: {}, profiles: {}, currentMedia: '', }); export default GlobalState;