Enforce Prettier for @format

Reviewed By: zertosh

Differential Revision: D5392376

fbshipit-source-id: 6f09a4d8f4542c3a74aadb8d62fd216529a4f2bc
This commit is contained in:
Eli White
2017-07-10 15:22:19 -07:00
committed by Facebook Github Bot
parent d7f671135c
commit 10230707cb
3 changed files with 15 additions and 4 deletions

View File

@@ -60,9 +60,13 @@ module.exports = {
];
return (
<FlatList
renderItem={(
info, // $FlowExpectedError - bad widgetCount type 6, should be Object
) => <span>{info.item.widget.missingProp}</span>}
renderItem={info =>
<span>
{
// $FlowExpectedError - bad widgetCount type 6, should be Object
info.item.widget.missingProp
}
</span>}
data={data}
/>
);