From 52afbe0ebb6fca0fe480e77c6fa8482870ddb2c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Markb=C3=A5ge?= Date: Mon, 9 Apr 2018 20:41:49 -0700 Subject: [PATCH] createReactNativeComponentClass needs to be CommonJS oops --- .../shims/react-native/createReactNativeComponentClass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rollup/shims/react-native/createReactNativeComponentClass.js b/scripts/rollup/shims/react-native/createReactNativeComponentClass.js index c368255b6133e..1a050e8b3cf0f 100644 --- a/scripts/rollup/shims/react-native/createReactNativeComponentClass.js +++ b/scripts/rollup/shims/react-native/createReactNativeComponentClass.js @@ -29,4 +29,4 @@ const createReactNativeComponentClass = function( return register(name, callback); }; -export default createReactNativeComponentClass; +module.exports = createReactNativeComponentClass;