see #503
I think it's best just to drop the default export and use named export for everything:
import {Value, eq} from "react-native-reanimated";
We destructure the default export later anyway, and if someone wants Animated.x they could always do * as Animated.
@wcandillon The second idea makes more sense. 馃
Most helpful comment
I think it's best just to drop the default export and use named export for everything:
We destructure the default export later anyway, and if someone wants
Animated.xthey could always do* as Animated.