From 33facd1b03bc2c6a9ffb70a5151f64d8782f3f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Sch=C3=BCttel?= Date: Wed, 27 Sep 2017 14:17:23 +0200 Subject: [PATCH] "Write Code in Your Editor": Split step 5 into 2 steps (#10832) * "Write Code in Your Editor": Split step 5 into 2 steps To me it wasn't clear (enough) that I had to copy the file's content from [here](https://codepen.io/gaearon/pen/oWWQNa?editors=0010) *and* add the three lines to the top. * Update tutorial.md --- tutorial/tutorial.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 1264696a..ed096e47 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -56,7 +56,8 @@ If you want to do it, here are the steps to follow: 2. Follow the [installation instructions](/react/docs/installation.html#creating-a-new-application) to create a new project. 3. Delete all files in the `src/` folder of the new project. 4. Add a file named `index.css` in the `src/` folder with [this CSS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0100). -5. Add a file named `index.js` in the `src/` folder with [this JS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0010), and then add three lines to the top of it: +5. Add a file named `index.js` in the `src/` folder with [this JS code](https://codepen.io/gaearon/pen/oWWQNa?editors=0010). +6. Add these three lines to the top of `index.js` in the `src/` folder: ```js import React from 'react';