React.Element<any> » React.Element<*>

Reviewed By: yungsters

Differential Revision: D4027388

fbshipit-source-id: 5bc178eab1ab72283622b4b7d418f9fd43ec0792
This commit is contained in:
Jan Kassens
2016-10-15 17:53:24 -07:00
committed by Facebook Github Bot
parent 8e2d4cc680
commit e58d17e68b
62 changed files with 136 additions and 136 deletions

View File

@@ -337,15 +337,15 @@ exports.description = 'Base component to display web content';
exports.examples = [
{
title: 'Simple Browser',
render(): React.Element<any> { return <WebViewExample />; }
render(): React.Element<*> { return <WebViewExample />; }
},
{
title: 'Scale Page to Fit',
render(): React.Element<any> { return <ScaledWebView/>; }
render(): React.Element<*> { return <ScaledWebView/>; }
},
{
title: 'Bundled HTML',
render(): React.Element<any> {
render(): React.Element<*> {
return (
<WebView
style={{
@@ -360,7 +360,7 @@ exports.examples = [
},
{
title: 'Static HTML',
render(): React.Element<any> {
render(): React.Element<*> {
return (
<WebView
style={{
@@ -375,7 +375,7 @@ exports.examples = [
},
{
title: 'POST Test',
render(): React.Element<any> {
render(): React.Element<*> {
return (
<WebView
style={{