Skip to content

docs: renew url for react-native docs #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Getting Started
---

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

Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ All options will basically help you to have :

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

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

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

```console
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ the compiled Reason code to the React Native client.

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

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

**Note: as soon as you have the app installed in a simulator/emulator, you can
just run**
Expand Down
4 changes: 2 additions & 2 deletions src/components/PageContent.re
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ let make = (~pageData) => {
|| pageData.id
|> Js.String.startsWith("components/")) {
Some(
"http://facebook.github.io/react-native/docs/"
"https://reactnative.dev/docs/"
++ pageData.title->Js.String.toLocaleLowerCase
++ "/",
);
Expand Down Expand Up @@ -160,4 +160,4 @@ If you want you can help us to improve the situation by |}
<JsonBodyRenderer body={pageData.body} />
</main>
</SpacedView>;
};
};