[fix] remove 'use strict' from warnValidStyle

This commit is contained in:
Nicolas Gallagher
2017-09-19 14:08:17 -07:00
parent a01e895e30
commit aad904b550
3 changed files with 0 additions and 4 deletions

View File

@@ -14,7 +14,6 @@
* @providesModule Game2048
* @flow
*/
'use strict';
import { any, func, object } from 'prop-types';
import GameBoard from './GameBoard';

View File

@@ -14,7 +14,6 @@
* @providesModule GameBoard
* @flow
*/
'use strict';
// NB: Taken straight from: https://github.com/IvanVergiliev/2048-react/blob/master/src/board.js
// with no modification except to format it for CommonJS and fix lint/flow errors

View File

@@ -11,8 +11,6 @@
* @providesModule warnValidStyle
*/
'use strict';
var emptyFunction = require('fbjs/lib/emptyFunction');
var warnValidStyle = emptyFunction;