Cleanup: Prefer React.Element over React$?Element

Reviewed By: vjeux

Differential Revision: D4013049

fbshipit-source-id: 18a447fdbc584418d6a51770363bcd221e7fb7dc
This commit is contained in:
Tim Yung
2016-10-14 08:59:37 -07:00
committed by Facebook Github Bot
parent beca25083a
commit e8198aed8d
66 changed files with 161 additions and 161 deletions
+2 -2
View File
@@ -433,7 +433,7 @@ exports.examples = [
},
}, {
title: 'Toggling Attributes',
render: function(): ReactElement<any> {
render: function(): React.Element<any> {
return <AttributeToggler />;
},
}, {
@@ -575,7 +575,7 @@ exports.examples = [
},
}, {
title: 'Dynamic Font Size Adjustment',
render: function(): ReactElement<any> {
render: function(): React.Element<any> {
return <AdjustingFontSize />;
},
}];