diff --git a/docs/Guide.md b/docs/Guide.md index eb087eb..39d4591 100644 --- a/docs/Guide.md +++ b/docs/Guide.md @@ -43,7 +43,7 @@ class MyWeb extends Component { render() { return ( ); } @@ -65,7 +65,7 @@ class MyWeb extends Component { return ( (this.webview = ref)} - source={{uri: 'https://infinite.red/react-native'}} + source={{uri: 'https://facebook.github.io/react-native/'}} onNavigationStateChange={this.handleWebViewNavigationStateChange} /> ); @@ -102,7 +102,7 @@ class MyWeb extends Component { // redirect somewhere else if (url.includes('google.com')) { - const newURL = 'https://infinite.red'; + const newURL = 'https://facebook.github.io/react-native/'; const redirectTo = 'window.location = "' + newURL + '"'; this.webview.injectJavaScript(redirectTo); }