Skip to content
Open
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
1 change: 1 addition & 0 deletions lesson_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ A basic project is now setup. The folder structure should look like:
.
├── lib
│   └── index.html
│   └── app.js
└── package.json
```

Expand Down
3 changes: 2 additions & 1 deletion lesson_5.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ identical when executed, but is much easier to read when coding!
Let's install some required tools to get us up and running:

```bash
npm install --save-dev babelify babel-preset-react babel-preset-es2015
npm install --save-dev babel-core babelify babel-preset-react babel-preset-es2015
```

- `babel-core` is the core Babel compiler
- `babelify` is a tool which tells Browserify how to handle this code when it
is seen
- `babel-preset-react` tells Babel that we want to handle react-specific (ie;
Expand Down
2 changes: 1 addition & 1 deletion lesson_6.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ React.render(
```

In JSX, these attributes are known as *props*, and are available from within the
component as the frist function parameter:
component as the first function parameter:

```javascript
function MyComponent(props) {
Expand Down