20 lines
372 B
JavaScript
20 lines
372 B
JavaScript
import { Store as PullStateStore } from 'pullstate';
|
|
|
|
import { lists, homeItems, notifications } from '../mock';
|
|
|
|
const Store = new PullStateStore({
|
|
safeAreaTop: 0,
|
|
safeAreaBottom: 0,
|
|
menuOpen: false,
|
|
notificationsOpen: false,
|
|
currentPage: null,
|
|
homeItems,
|
|
lists,
|
|
notifications,
|
|
settings: {
|
|
enableNotifications: true,
|
|
},
|
|
});
|
|
|
|
export default Store;
|