UIExplorer flowification

This commit is contained in:
Basil Hosmer
2015-03-23 00:24:47 -08:00
parent 05409868b6
commit 45a7b5cdcb
14 changed files with 45 additions and 28 deletions
+5 -4
View File
@@ -1,6 +1,7 @@
/**
* * Copyright 2004-present Facebook. All Rights Reserved.
* */
* Copyright 2004-present Facebook. All Rights Reserved.
* @flow
*/
'use strict';
var React = require('react-native');
@@ -103,10 +104,10 @@ exports.description = 'Interface to show iOS\' action sheets';
exports.examples = [
{
title: 'Show Action Sheet',
render() { return <ActionSheetExample />; }
render(): ReactElement { return <ActionSheetExample />; }
},
{
title: 'Show Share Action Sheet',
render() { return <ShareActionSheetExample />; }
render(): ReactElement { return <ShareActionSheetExample />; }
}
];