Skip to content

Commit eca7cff

Browse files
committed
v2.1.1 - use no jsx
1 parent aaf5460 commit eca7cff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-rest-api",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Use fetch with hooks",
55
"keywords": [
66
"react",

src/Context.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import React, { createContext } from 'react'
22
import { buildApi } from './helper'
33

44
export const ApiContext = createContext(buildApi())
5-
export const ApiProvider = ({ children, ...p }) => <ApiContext.Provider value={buildApi(p)}>{children}</ApiContext.Provider>
5+
export const ApiProvider = ({ children, ...p }) => React.createElement(ApiContext.Provider, { value: buildApi(p) }, children)
66
export const ApiConsumer = ApiContext.Consumer
7-
export const withApi = C => p => <ApiConsumer>{api => <C {...p} api={api} />}</ApiConsumer>
7+
export const withApi = C => p => React.createElement(ApiConsumer, null, api => React.createElement(C, { ...p, api }))

0 commit comments

Comments
 (0)