more UIExplorer flow

This commit is contained in:
Basil Hosmer
2015-03-23 11:36:57 -07:00
parent a6b154332b
commit d6bb48d972
22 changed files with 49 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
/**
* Copyright 2004-present Facebook. All Rights Reserved.
* @flow
*/
'use strict';
@@ -35,6 +36,8 @@ var WebViewExample = React.createClass({
};
},
inputText: '',
handleTextInputChange: function(event) {
this.inputText = event.nativeEvent.text;
},
@@ -259,6 +262,6 @@ exports.description = 'Base component to display web content';
exports.examples = [
{
title: 'WebView',
render() { return <WebViewExample />; }
render(): ReactElement { return <WebViewExample />; }
}
];