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:
Add babel polyfill to your project:
npm install --save babel-polyfill
And then import it in your index.js (entry point):
import 'babel-polyfill';
Hopefully, this will solve your problem.