import React from 'react';

export const StoreContext = React.createContext({
    store: [],
    setStore: () => {}
});
