react-native-github: turn on strict type args in Flow, codemod stragglers

Reviewed By: frantic

Differential Revision: D3374980

fbshipit-source-id: 6dbefeffa588f676c8e162ba7ac7912b61a7711a
This commit is contained in:
Basil Hosmer
2016-06-03 02:37:43 -07:00
committed by Facebook Github Bot 4
parent a7f1428d4a
commit fe5c2615dd
4 changed files with 5 additions and 3 deletions

View File

@@ -102,6 +102,6 @@ exports.examples = [
platform: 'ios',
title: 'Memory Warnings',
description: 'In the IOS simulator, hit Shift+Command+M to simulate a memory warning.',
render(): ReactElement { return <AppStateSubscription showMemoryWarnings={true} />; }
render(): ReactElement<any> { return <AppStateSubscription showMemoryWarnings={true} />; }
},
];