Files
EMI-ExpoAPP/contexts/GlobalState.js
T
2026-02-24 15:56:48 -05:00

14 lines
272 B
JavaScript

import { proxy, useSnapshot } from 'valtio';
import API from '../API';
const GlobalState = proxy({
me: {},
profiles: {},
currentMedia: '',
mediaPost: {},
biblePickerSelection: null,
bibleChapterSelection: null,
});
export default GlobalState;