August 2017
Beginner
374 pages
10h 41m
English
Now that we have webpack and Babel set up, we just need to create our entry point files:
console.log('hello world!')
The src/index.js file (including all imports and dependencies) will be transpiled into a main.js file by Babel.
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Learning Redux</title> </head> <body> <div id="root"></div> <script src="main.js"></script> </body></html>
Read now
Unlock full access