Browse Source

Merge pull request #225 from raisedadead/fix/tutorial-indentation

doc: Fix indentation that renders weirdly on mobile
main
Brian Vaughn 7 years ago
committed by GitHub
parent
commit
1871cea40a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      content/tutorial/tutorial.md

10
content/tutorial/tutorial.md

@ -73,11 +73,11 @@ rm -f src/*
6. Add these three lines to the top of `index.js` in the `src/` folder:
```js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
```
```js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
```
Now if you run `npm start` in the project folder and open `http://localhost:3000` in the browser, you should see an empty tic-tac-toe field.

Loading…
Cancel
Save