Change ES6 module syntax to module.exports

Reviewed By: rubennorte

Differential Revision: D7490562

fbshipit-source-id: 861681c24eab678d25af47bb25738651fe3e26b4
This commit is contained in:
Peter van der Zee 2018-04-05 06:14:51 -07:00 committed by Facebook Github Bot
parent 3ed076b65a
commit 4a814d1370
1 changed files with 4 additions and 2 deletions

View File

@ -16,6 +16,8 @@ export type ViewChildContext = {|
+isInAParentText: boolean,
|};
export const ViewContextTypes = {
isInAParentText: PropTypes.bool,
module.exports = {
ViewContextTypes: {
isInAParentText: PropTypes.bool,
},
};