14 lines
272 B
JavaScript
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;
|