From c6583918db90b47382aaa52c1c2c53721a167a3b Mon Sep 17 00:00:00 2001 From: EDllT <47005435+EDLLT@users.noreply.github.com> Date: Sun, 2 Feb 2025 15:41:38 +0300 Subject: [PATCH] install.md: workaround dependency conflict --- docs/install.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/install.md b/docs/install.md index 80b2560..4556acb 100644 --- a/docs/install.md +++ b/docs/install.md @@ -35,6 +35,11 @@ npx @react-native-community/cli init --template @rescript-react-native/template cd MyApp ``` +In case of errors, you can use this workaround to install it. +```console +mkdir MyApp && cd MyApp && npm init -y && npm install react@18.2.0 react-dom@18.2.0 rescript-react-native +``` + 💖 Your project is setup, you can just check [how to use _ReScript React Native_](/docs/usage/) right away!