From 6f10f6be9c3896a2124c17e9ccd0f8eafb9b99f4 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Sat, 30 Dec 2017 19:06:03 -0800 Subject: [PATCH] [fix] AppRegistry.unmountApplicationComponentAtRootTag Fixes the bad import of a named export rather than the default export. --- packages/react-native-web/src/apis/AppRegistry/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-web/src/apis/AppRegistry/index.js b/packages/react-native-web/src/apis/AppRegistry/index.js index 9a006197..b060d84c 100644 --- a/packages/react-native-web/src/apis/AppRegistry/index.js +++ b/packages/react-native-web/src/apis/AppRegistry/index.js @@ -11,7 +11,7 @@ */ import invariant from 'fbjs/lib/invariant'; -import { unmountComponentAtNode } from '../../modules/unmountComponentAtNode'; +import unmountComponentAtNode from '../../modules/unmountComponentAtNode'; import renderApplication, { getApplication } from './renderApplication'; import type { ComponentType } from 'react';