소스 검색

Update Reference.md

Thibault Malbranche 5 년 전
부모
커밋
e543e940d4
No account linked to committer's email address
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      docs/Reference.md

+ 2
- 2
docs/Reference.md 파일 보기

@@ -268,10 +268,10 @@ Example:
268 268
 
269 269
 ```jsx
270 270
 <WebView
271
-  source={{ uri: "https://infinite.red" }}
271
+  source={{ uri: "https://facebook.github.io/react-native" }}
272 272
   onShouldStartLoadWithRequest={(request) => {
273 273
     // Only allow navigating within this website
274
-    return request.url.startsWith("https://infinite.red")
274
+    return request.url.startsWith("https://facebook.github.io/react-native")
275 275
   }}
276 276
 />
277 277
 ```