diff --git a/.gitignore b/.gitignore
index 5504ecb7..ca3bd829 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,9 @@
+
+.DS_Store
.idea/
+jest
+
chapter-12/color-organizer/dist/
# Logs
diff --git a/README.md b/README.md
index 2712ffd2..bf08ea36 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,6 @@ The code samples for *Learning React* by Alex Banks and Eve Porcello, published
|----------|----------|
|  | If you’re interested in React but find yourself confused about how to get started,
this is the book is for you. In this book, Alex Banks and Eve Porcello introduce
how to build React applications with the React ecosystem including Flux and Redux.
__Buy the book__: [Amazon](https://www.amazon.com/Learning-React-Functional-Development-Flux/dp/1491954620/ref=sr_1_1?s=books&ie=UTF8&qid=1466542799&sr=1-1&keywords=learning+react) - [O'Reilly](http://shop.oreilly.com/product/0636920049579.do)
__Take the Course__: [Moon Highway](http://www.moonhighway.com)
|
-
### Table of Contents
* __Chapter 1__ : [Welcome To React](https://github.com/MoonHighway/learning-react/tree/master/chapter-01)
@@ -22,5 +21,16 @@ The code samples for *Learning React* by Alex Banks and Eve Porcello, published
* __Chapter 11__ : [React Router](https://github.com/MoonHighway/learning-react/tree/master/chapter-11)
* __Chapter 12__ : [React and the Server](https://github.com/MoonHighway/learning-react/tree/master/chapter-12)
+-----------------------------------------
+### React 16 Upgrades ✅
+This repo has been upgraded to React 16. Some of the book examples may have changed. These changes
+are clearly defined in the project `README.MD` documents where they take place. If you would like
+to view the version of this repo that uses React 15 and matches the book code exactly use [(v1.0.0)](https://github.com/MoonHighway/learning-react/tree/v1.0.0) of
+this repo. The major changes are defined in the following `README.MD` documents:
+1. PropTypes deprecated - [Chapter 6 Color Organizer](https://github.com/MoonHighway/learning-react/tree/master/chapter-06/color-organizer)
+2. React 16 State Management - [Chapter 6 Color Organizer ](https://github.com/MoonHighway/learning-react/tree/master/chapter-06/color-organizer)
+3. Testing React 16 with enzyme 3 - [Chapter 10 Color Organizer](https://github.com/MoonHighway/learning-react/tree/master/chapter-10/color-organizer)
+4. Server Rendering hydrate - [Chapter 12 server rendered recipes](https://github.com/MoonHighway/learning-react/tree/master/chapter-12/server-render-recipes)
+5. Server Rendering hydrate - [Chapter 12 Color Organizer](https://github.com/MoonHighway/learning-react/tree/master/chapter-12/color-organizer)
diff --git a/chapter-01/readme.md b/chapter-01/readme.md
index c3763c62..3d22eb2a 100644
--- a/chapter-01/readme.md
+++ b/chapter-01/readme.md
@@ -1,47 +1,50 @@
Chapter 1 : Introduction
==================
-The widespread use of React on large websites shows that it is stable enough to use at scale. React is ready,
-but nothing is set in stone. The unique opportunity we all have is that since it's so new, we can be part of building it.
-As the library and its tools evolve, we can suggest enhancements. When ideas come to mind about how to work with
-React more efficiently, we can build them. React is already great, but we can play an active role in building
-its even better future.
+The widespread use of React on large websites shows that it is stable enough to use at scale. React is ready.
-
-Installing Node js and NPM
+Installing Node.js and NPM
--------------------
-When working with Node and React, you will need to use the command line. In the mac this is called the terminal on a PC
-it is called the command prompt. Run the following commands to check your current version on node and npm. If needed
-instruction on how to install or upgrade are below.
+When working with Node and React, you will need to use the command line. On the Mac, this is called the terminal. On a PC,
+it is called the command prompt. Run the following commands to check your current version on node and npm. If needed,
+instructions on how to install or upgrade are below.
First, Check to see if you have Node JS installed
```
$ node -v
```
-Then, if needed, [install or update Node JS](https://nodejs.org/en/) from the node js website. Download the installer,
+Then, if needed, [install or update Node.js](https://nodejs.org/en/) from the Node.js website. Download the installer,
run it, and follow the instructions.
--------------------------------
-Next, Check your version of npm
+Next, check your version of npm:
```
$ npm -v
```
-Then, if you are running anything less than version three you will need to update npm.
+Then, if you are running anything less than version 3, you will need to update npm:
##### Update NPM on Mac
```
-$ sudo npm update -g npm
+$ sudo npm update -g npm
```
##### Update NPM on PC
-Make sure to run the command prompt with administrator privilages
+Make sure to run the command prompt with administrator privileges:
```
$ npm update -g npm
```
-Finally, there are some nice options for switching node versions. You can install one of these optional version mangers:
+##### Optionally install Yarn
+Yarn is a package manager created at Facebook. It is a compatible alternative to npm. Yarn's use is not required,
+but you can optionally install it if you like:
+```
+$ sudo npm install -g yarn
+```
+
+Finally, there are some nice options for switching Node versions. This is not required, but you can
+optionally install one of these version mangers:
* [Install Node Version Manager - mac only (optional)](https://github.com/creationix/nvm)
* [Install NVM-Windows - pc only (optional)](https://github.com/coreybutler/nvm-windows)
@@ -50,62 +53,72 @@ Finally, there are some nice options for switching node versions. You can instal
Installing the React Tools
--------------------------------
-Next, there are some developer chrome extensions or Firefox addons that you will need to install in order to debug React.
+Next, install the React developer tools:
-* Detector ([Chrome](https://chrome.google.com/webstore/detail/react-detector/jaaklebbenondhkanegppccanebkdjlh?hl=en-US))
-* Development Tools ([Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) |
+* Development Tools ([Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) |
[Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/))
Working with JSBin
--------------------------------
This repository links to samples hosted on JSBin so that you can immediately begin changing each sample and checking
-output to see how each sample has changed.
+output to see how each sample has changed.
+
+Here is a Hello World sample that JSBin has assigned the identifier __gosabo__. There are 3 available versions of this sample in JSBin under the same identifier.
+
+Note: All JSBin links throughout this repository use React 15. To update, change the script tag CDN links to version 16.
-Here is a Hello World sample that JSBin has assigned the identifier __gosabo__. There are 3 available versions of this
-sample in JSBin under the same identifier.
+Change
+
+```html
+
+
+```
+
+To
+
+```html
+
+
+```
-##### A preview of the latest version in a sample:
+##### A preview of the latest version in a sample:
[http://output.jsbin.com/gosabo](http://output.jsbin.com/gosabo)
-##### The sample in the editor:
+##### The sample in the editor:
[http://output.jsbin.com/gosabo/edit](http://output.jsbin.com/gosabo/edit)
-##### The sample in the editor with JavaScript and output tabs open:
+##### The sample in the editor with JavaScript and output tabs open:
[http://jsbin.com/gosabo/edit?js,output](http://jsbin.com/gosabo/edit?js,output)
-##### A pure preview of the sample:
-[http://output.jsbin.com/gosabo/quite](http://output.jsbin.com/gosabo)
-##### Version 1 of the sample as output:
+##### A pure preview of the sample:
+[http://output.jsbin.com/gosabo/quite](http://output.jsbin.com/gosabo/quiet)
+##### Version 1 of the sample as output:
[http://output.jsbin.com/gosabo/1](http://output.jsbin.com/gosabo/1)
-##### Version 1 of te sample in the editor:
+##### Version 1 of the sample in the editor:
[http://output.jsbin.com/gosabo/1/edit](http://output.jsbin.com/gosabo/1/edit)
-##### Version 2 of the sample as output:
+##### Version 2 of the sample as output:
[http://output.jsbin.com/gosabo/2](http://output.jsbin.com/gosabo/2)
-##### Version 3 of the sample in the editor with html and javascript tabs open:
+##### Version 3 of the sample in the editor with html and javascript tabs open:
[http://output.jsbin.com/gosabo/3/edit](http://output.jsbin.com/gosabo/3/edit?html,js)
-CDN's for javascript libraries
+CDN's for JavaScript libraries
--------------------------------
-Ultimately, we will be working with webpack and npms, but to get running quickly here are some CDN links that
+Ultimately, we will be working with webpack and npms, but to get running quickly, here are some CDN links that
can be included in JSBin with this syntax: ``
-* [React Source](https://fb.me/react-with-addons-15.1.0.js)
-* [React DOM Source](https://fb.me/react-dom-15.1.0.js)
-* [Babel Inline Transpiller](https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js)
+* [React](https://unpkg.com/react@16/umd/react.development.js)
+* [React DOM](https://unpkg.com/react-dom@16/umd/react-dom.development.js)
+* [Babel Inline Transpiler](https://unpkg.com/babel-standalone@6.15.0/babel.min.js)
* [fetch](https://cdnjs.cloudflare.com/ajax/libs/fetch/1.0.0/fetch.min.js)
-* [Redux Source](https://cdnjs.cloudflare.com/ajax/libs/redux/3.5.2/redux.min.js)
-* [React Router Source](https://cdnjs.cloudflare.com/ajax/libs/react-router/2.6.0/ReactRouter.min.js)
-* [Mocha](https://cdnjs.cloudflare.com/ajax/libs/mocha/3.0.0-1/mocha.min.js)
-* [Chai](https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.min.js)
-* [Sinon](https://cdnjs.cloudflare.com/ajax/libs/sinon.js/1.15.4/sinon.min.js)
+* [Redux](https://cdnjs.cloudflare.com/ajax/libs/redux/3.6.0/redux.min.js)
+* [React Router Source](https://cdnjs.cloudflare.com/ajax/libs/react-router/4.0.0/react-router.min.js)
React Resources
--------------------------------
-Finally, we have some links to resources and official documentation for the libraies that we will be using.
+Finally, we have some links to resources and official documentation for the libraries that we will be using:
* [React Documentation](https://facebook.github.io/react/index.html)
* [React Source](https://github.com/facebook/react)
* [React NPM](https://www.npmjs.com/package/react)
-* [Webpack Documentation](https://webpack.github.io/docs/)
+* [Webpack Documentation](https://webpack.js.org/)
* [Flux Documentation](https://facebook.github.io/flux/docs/overview.html)
* [Redux Documentation](http://redux.js.org/index.html)
-* [React Router Documentation](https://github.com/reactjs/react-router/tree/master/docs)
-* [Mocha Documentation](https://mochajs.org/)
-* [Sinon Documentation](http://sinonjs.org/)
\ No newline at end of file
+* [Jest Documentation](https://facebook.github.io/jest/)
+* [React Router Documentation](https://reacttraining.com/react-router/)
diff --git a/chapter-02/01-declaring-variables/01-const.html b/chapter-02/01-declaring-variables/01-const.html
new file mode 100644
index 00000000..890efc5b
--- /dev/null
+++ b/chapter-02/01-declaring-variables/01-const.html
@@ -0,0 +1,22 @@
+
+
+
Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/02-const.html b/chapter-02/01-declaring-variables/02-const.html new file mode 100644 index 00000000..a632e6cd --- /dev/null +++ b/chapter-02/01-declaring-variables/02-const.html @@ -0,0 +1,21 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/03-let.html b/chapter-02/01-declaring-variables/03-let.html new file mode 100644 index 00000000..48c4f071 --- /dev/null +++ b/chapter-02/01-declaring-variables/03-let.html @@ -0,0 +1,27 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/04-let.html b/chapter-02/01-declaring-variables/04-let.html new file mode 100644 index 00000000..c035c59d --- /dev/null +++ b/chapter-02/01-declaring-variables/04-let.html @@ -0,0 +1,27 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/05-let.html b/chapter-02/01-declaring-variables/05-let.html new file mode 100644 index 00000000..27ac9141 --- /dev/null +++ b/chapter-02/01-declaring-variables/05-let.html @@ -0,0 +1,41 @@ + + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/08-template-strings.html b/chapter-02/01-declaring-variables/08-template-strings.html new file mode 100644 index 00000000..50424145 --- /dev/null +++ b/chapter-02/01-declaring-variables/08-template-strings.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/09-template-strings.html b/chapter-02/01-declaring-variables/09-template-strings.html new file mode 100644 index 00000000..01d9f22d --- /dev/null +++ b/chapter-02/01-declaring-variables/09-template-strings.html @@ -0,0 +1,46 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/10-template-strings.html b/chapter-02/01-declaring-variables/10-template-strings.html new file mode 100644 index 00000000..d5d8e999 --- /dev/null +++ b/chapter-02/01-declaring-variables/10-template-strings.html @@ -0,0 +1,41 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/02-es6-functions/01-default-parameters.html b/chapter-02/02-es6-functions/01-default-parameters.html new file mode 100644 index 00000000..256e1c1c --- /dev/null +++ b/chapter-02/02-es6-functions/01-default-parameters.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/02-es6-functions/02-default-parameters.html b/chapter-02/02-es6-functions/02-default-parameters.html new file mode 100644 index 00000000..9f2f31c6 --- /dev/null +++ b/chapter-02/02-es6-functions/02-default-parameters.html @@ -0,0 +1,30 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/01-arrows.html b/chapter-02/03-arrow-functions/01-arrows.html new file mode 100644 index 00000000..34af1b79 --- /dev/null +++ b/chapter-02/03-arrow-functions/01-arrows.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/02-arrows.html b/chapter-02/03-arrow-functions/02-arrows.html new file mode 100644 index 00000000..bd3423ff --- /dev/null +++ b/chapter-02/03-arrow-functions/02-arrows.html @@ -0,0 +1,23 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/03-arrows.html b/chapter-02/03-arrow-functions/03-arrows.html new file mode 100644 index 00000000..b1412fce --- /dev/null +++ b/chapter-02/03-arrow-functions/03-arrows.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/04-arrows.html b/chapter-02/03-arrow-functions/04-arrows.html new file mode 100644 index 00000000..b6d5da84 --- /dev/null +++ b/chapter-02/03-arrow-functions/04-arrows.html @@ -0,0 +1,23 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/05-arrows.html b/chapter-02/03-arrow-functions/05-arrows.html new file mode 100644 index 00000000..da569916 --- /dev/null +++ b/chapter-02/03-arrow-functions/05-arrows.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/06-arrows.html b/chapter-02/03-arrow-functions/06-arrows.html new file mode 100644 index 00000000..a2326991 --- /dev/null +++ b/chapter-02/03-arrow-functions/06-arrows.html @@ -0,0 +1,33 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/07-arrows.html b/chapter-02/03-arrow-functions/07-arrows.html new file mode 100644 index 00000000..425d0836 --- /dev/null +++ b/chapter-02/03-arrow-functions/07-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/08-arrows.html b/chapter-02/03-arrow-functions/08-arrows.html new file mode 100644 index 00000000..16b138c5 --- /dev/null +++ b/chapter-02/03-arrow-functions/08-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/09-arrows.html b/chapter-02/03-arrow-functions/09-arrows.html new file mode 100644 index 00000000..19d63274 --- /dev/null +++ b/chapter-02/03-arrow-functions/09-arrows.html @@ -0,0 +1,32 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/10-arrows.html b/chapter-02/03-arrow-functions/10-arrows.html new file mode 100644 index 00000000..55930a34 --- /dev/null +++ b/chapter-02/03-arrow-functions/10-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/11-arrows.html b/chapter-02/03-arrow-functions/11-arrows.html new file mode 100644 index 00000000..21c780a9 --- /dev/null +++ b/chapter-02/03-arrow-functions/11-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/01-destructuring.html b/chapter-02/04-objects-and-arrays/01-destructuring.html new file mode 100644 index 00000000..20faa849 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/01-destructuring.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/02-destructuring.html b/chapter-02/04-objects-and-arrays/02-destructuring.html new file mode 100644 index 00000000..d423a863 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/02-destructuring.html @@ -0,0 +1,29 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/03-destructuring.html b/chapter-02/04-objects-and-arrays/03-destructuring.html new file mode 100644 index 00000000..74502bc7 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/03-destructuring.html @@ -0,0 +1,28 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/04-destructuring.html b/chapter-02/04-objects-and-arrays/04-destructuring.html new file mode 100644 index 00000000..a203e608 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/04-destructuring.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/05-destructuring.html b/chapter-02/04-objects-and-arrays/05-destructuring.html new file mode 100644 index 00000000..882988b9 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/05-destructuring.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html new file mode 100644 index 00000000..218aa128 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html new file mode 100644 index 00000000..78150b03 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html @@ -0,0 +1,28 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html new file mode 100644 index 00000000..28a491d5 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html @@ -0,0 +1,38 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html new file mode 100644 index 00000000..4ab2a3c3 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html @@ -0,0 +1,38 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/10-spread-operator.html b/chapter-02/04-objects-and-arrays/10-spread-operator.html new file mode 100644 index 00000000..95869107 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/10-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/11-spread-operator.html b/chapter-02/04-objects-and-arrays/11-spread-operator.html new file mode 100644 index 00000000..fc9bab05 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/11-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/12-spread-operator.html b/chapter-02/04-objects-and-arrays/12-spread-operator.html new file mode 100644 index 00000000..cce7f90b --- /dev/null +++ b/chapter-02/04-objects-and-arrays/12-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/13-spread-operator.html b/chapter-02/04-objects-and-arrays/13-spread-operator.html new file mode 100644 index 00000000..4cf451b5 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/13-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/14-spread-operator.html b/chapter-02/04-objects-and-arrays/14-spread-operator.html new file mode 100644 index 00000000..52d7594a --- /dev/null +++ b/chapter-02/04-objects-and-arrays/14-spread-operator.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/15-spread-operator.html b/chapter-02/04-objects-and-arrays/15-spread-operator.html new file mode 100644 index 00000000..acfac0f8 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/15-spread-operator.html @@ -0,0 +1,32 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/05-promises/01-promises.html b/chapter-02/05-promises/01-promises.html new file mode 100644 index 00000000..e6d987e8 --- /dev/null +++ b/chapter-02/05-promises/01-promises.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/05-promises/02-promises.html b/chapter-02/05-promises/02-promises.html new file mode 100644 index 00000000..1fb6e852 --- /dev/null +++ b/chapter-02/05-promises/02-promises.html @@ -0,0 +1,21 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/01-classes.html b/chapter-02/06-es6-class-syntax/01-classes.html new file mode 100644 index 00000000..b522f66a --- /dev/null +++ b/chapter-02/06-es6-class-syntax/01-classes.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/02-classes.html b/chapter-02/06-es6-class-syntax/02-classes.html new file mode 100644 index 00000000..7c7f1eaf --- /dev/null +++ b/chapter-02/06-es6-class-syntax/02-classes.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/03-classes.html b/chapter-02/06-es6-class-syntax/03-classes.html new file mode 100644 index 00000000..437ae908 --- /dev/null +++ b/chapter-02/06-es6-class-syntax/03-classes.html @@ -0,0 +1,50 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/babel-inline-transpiler.html b/chapter-02/babel-inline-transpiler.html index 9d6004fe..8c5a60d8 100644 --- a/chapter-02/babel-inline-transpiler.html +++ b/chapter-02/babel-inline-transpiler.html @@ -3,8 +3,8 @@ -