Skip to content

Commit 5ec6d2c

Browse files
authored
docs: renew url for react-native docs (#14)
1 parent 2ca2b74 commit 5ec6d2c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Getting Started
44
---
55

66
_Reason React Native_ is a safe & simple way to build
7-
[React Native](http://facebook.github.io/react-native/) apps, in
7+
[React Native](https://reactnative.dev/) apps, in
88
[Reason](http://reasonml.github.io/), using
99
[ReasonReact](https://reasonml.github.io/reason-react/).
1010

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ All options will basically help you to have :
1919

2020
Below we assume you are already familiar with React Native. If you are new to
2121
React Native, please have a quick look to
22-
[React Native Getting Started documentation](https://facebook.github.io/react-native/docs/getting-started.html)
22+
[React Native Getting Started documentation](https://reactnative.dev/docs/getting-started.html)
2323
in order to get the minimal requirements.
2424

2525
## Create a new project with _Reason React Native_
@@ -29,7 +29,7 @@ choosing this option you will get an hello world project that will already have
2929
all the requirements included.
3030

3131
When you have correctly
32-
[`react-native-cli`](http://facebook.github.io/react-native/docs/getting-started#the-react-native-cli)
32+
[`react-native-cli`](https://reactnative.dev/docs/getting-started#the-react-native-cli)
3333
installed, you can run the following command:
3434

3535
```console

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ the compiled Reason code to the React Native client.
149149

150150
Now you can start coding by editing files in `src/`!
151151

152-
[Read more about starting the project in your environment of choice](http://facebook.github.io/react-native/docs/getting-started).
152+
[Read more about starting the project in your environment of choice](https://reactnative.dev/docs/getting-started).
153153

154154
**Note: as soon as you have the app installed in a simulator/emulator, you can
155155
just run**

src/components/PageContent.re

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ let make = (~pageData) => {
8282
|| pageData.id
8383
|> Js.String.startsWith("components/")) {
8484
Some(
85-
"http://facebook.github.io/react-native/docs/"
85+
"https://reactnative.dev/docs/"
8686
++ pageData.title->Js.String.toLocaleLowerCase
8787
++ "/",
8888
);
@@ -159,4 +159,4 @@ If you want you can help us to improve the situation by |}
159159
<JsonBodyRenderer body={pageData.body} />
160160
</main>
161161
</SpacedView>;
162-
};
162+
};

0 commit comments

Comments
 (0)