[fix] Easing import when using babel plugin

Fix #649
This commit is contained in:
Nicolas Gallagher
2017-09-19 09:42:43 -07:00
parent 4bbe1a40aa
commit 77a40b6237
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* Copyright (c) 2016-present, Nicolas Gallagher.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*
* @providesModule Easing
* @noflow
*/
import Easing from 'animated/lib/Easing';
export default Easing;
+1 -1
View File
@@ -12,7 +12,7 @@ export { default as AsyncStorage } from './apis/AsyncStorage';
export { default as BackAndroid } from './apis/BackAndroid';
export { default as Clipboard } from './apis/Clipboard';
export { default as Dimensions } from './apis/Dimensions';
export { default as Easing } from 'animated/lib/Easing';
export { default as Easing } from './apis/Easing';
export { default as I18nManager } from './apis/I18nManager';
export { default as Keyboard } from './apis/Keyboard';
export { default as InteractionManager } from './apis/InteractionManager';