9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
import { Store as PullStateStore } from 'pullstate';
|
|
|
|
const Store = new PullStateStore({
|
|
showMenu: false,
|
|
showNotifications: false,
|
|
});
|
|
|
|
export default Store;
|