Enabling React.js

Enabling React.js

Screencast

Do you prefer video tutorials? Check out the React.js screencast series.

Using React? First add some dependencies with Yarn:

  1. $ yarn add react react-dom prop-types

Enable react in your webpack.config.js:

  1. // webpack.config.js
  2. // ...
  3. Encore
  4. // ...
  5. + .enableReactPreset()
  6. ;

Then restart Encore. When you do, it will give you a command you can run to install any missing dependencies. After running that command and restarting Encore, you’re done!

Your .js and .jsx files will now be transformed through babel-preset-react.

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.