mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-23 20:01:01 +08:00
Enforce Prettier for @format
Reviewed By: zertosh Differential Revision: D5392376 fbshipit-source-id: 6f09a4d8f4542c3a74aadb8d62fd216529a4f2bc
This commit is contained in:
committed by
Facebook Github Bot
parent
d7f671135c
commit
10230707cb
@@ -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}
|
||||
/>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user