Updated to v1.3.6

This commit is contained in:
Henry Whitaker
2020-05-13 10:19:22 +01:00
parent acccfced1b
commit f5186ea7fd
165 changed files with 2971 additions and 3223 deletions

View File

@@ -0,0 +1,11 @@
// TODO: Replace with React.createContext once we can assume React 16+
import createContext from "mini-create-react-context";
const createNamedContext = name => {
const context = createContext();
context.displayName = name;
return context;
};
export default createNamedContext;