Reverted commit D4027388

Reviewed By: yungsters

Differential Revision: D4027388

fbshipit-source-id: 8e3341b6f393ccf432c1a4e22a7cbf422284a06f
This commit is contained in:
Konstantin Raev
2016-10-16 04:13:42 -07:00
committed by Facebook Github Bot
parent dbfd046145
commit 6ea26c01de
62 changed files with 136 additions and 136 deletions
+5 -5
View File
@@ -337,15 +337,15 @@ exports.description = 'Base component to display web content';
exports.examples = [
{
title: 'Simple Browser',
render(): React.Element<*> { return <WebViewExample />; }
render(): React.Element<any> { return <WebViewExample />; }
},
{
title: 'Scale Page to Fit',
render(): React.Element<*> { return <ScaledWebView/>; }
render(): React.Element<any> { return <ScaledWebView/>; }
},
{
title: 'Bundled HTML',
render(): React.Element<*> {
render(): React.Element<any> {
return (
<WebView
style={{
@@ -360,7 +360,7 @@ exports.examples = [
},
{
title: 'Static HTML',
render(): React.Element<*> {
render(): React.Element<any> {
return (
<WebView
style={{
@@ -375,7 +375,7 @@ exports.examples = [
},
{
title: 'POST Test',
render(): React.Element<*> {
render(): React.Element<any> {
return (
<WebView
style={{