Build a Random Quote Machine (upload codepen)

Tell us what’s happening:
I am having trouble uploading my code to codepen.
In the JS sector I am uploading my index.js code, and at the html sector my index.html code.

I also make sure to include:
https://cdnjs.cloudflare.com/ajax/libs/react/16.7.0/umd/react.production.min.js
https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.7.0/umd/react-dom.production.min.js

from pen settings

Your code so far
Link to Codepen https://codepen.io/Waerjak/pen/LMrBpK
Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:

Looking at console output is always a good approach, in your case, it says:

ReferenceError: Component is not defined index.html:114:100: 

so adding:

const {Component} = React;

or

class App extends React.Component {

will run your app.

Happy Coding!

P.S. I don’t know why, but you are including the FCC test suite twice?

Awesome! thank you very much! :slight_smile: