From 6987505fda6e4e58e7fc0fb5eef6b4966d5e89ea Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 21 Oct 2021 13:03:04 +0200 Subject: [PATCH] docs: update React installation guide --- docs/installation/react.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/installation/react.md b/docs/installation/react.md index f1fdc80a..60fd9c20 100644 --- a/docs/installation/react.md +++ b/docs/installation/react.md @@ -27,9 +27,12 @@ yarn create react-app my-tiptap-project --template tiptap Let’s start with a fresh React project called `my-tiptap-project`. [Create React App](https://reactjs.org/docs/getting-started.html) will set up everything we need. ```bash -# create a project +# create a project with npm npx create-react-app my-tiptap-project +# or if you prefer Yarn +yarn create react-app my-tiptap-project + # change directory cd my-tiptap-project ```