I\'ve just coded my first website using reactjs, but when I check how google sees my website, I receive the following result:
My HTML file looks like this:
Try adding browser shims. Note that it doesn’t matter if you use Babel to compile your code, you still need polyfills for older browsers and for headless browsers such as Google Bot or PhantomsJS.
npm install --save es5-shim es6-shim
// in your frontend/index.js, as early as possible
import 'es5-shim';
import 'es6-shim';
You can read more here