ESModules
// ✔ RUNS IN THE BROWSERimport React from '/web_modules/react.js';// ✘ WON'T RUN IN THE BROWSER// ✔ CAN BE TRANSFORMED AUTOMATICALLY BY BABEL, ETC.import React from 'react';
weird stuff: you end up having to import files exactly. You can't import a folder name and get index.js inside of it, you have to use `folder/index.js`.