import ApiHelpers from './ApiHelpers.jsx'; import React from 'react'; const Context = React.createContext({ api: ApiHelpers(""), }); export const withContext = Component => props => ( {ctx => } ); export default Context;