From a9ea705d3512acd52008d1ce84ce3c34335e5370 Mon Sep 17 00:00:00 2001 From: Thomas Parslow Date: Thu, 21 Jan 2016 13:06:16 +0000 Subject: [PATCH] Flow annotations are now not allowed in non-flow files Adding @noflow makes flow happy without having to make sure all the annotations are actually correct --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index c753bbb..849ddc3 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,4 @@ +//@noflow const styles = require('./styles'); const React = require('react-native'); const { Dimensions, Animated, } = React;