This is all I have: ``` js import React from "react"; import ReactDOM from "react-dom"; import Playground from "component-playground"; import R from 'ramda' import flyd from 'flyd' import './index.css'; const boilerplate = ` class App extends React.Component { render() { return ( Hello World ) } } ReactDOM.render(, mountNode) ` class Index extends React.Component { render() { return ( ); } }; ReactDOM.render(, document.getElementById('root')); ``` And I keep getting these syntax issues: ``` SyntaxError: unknown: Unexpected token (20:0) 18 | } 19 | > 20 | ReactDOM.render(, mountNode) | ^ 21 | 22 | ); 23 | } ```  I'm not sure how to get this going...
This is all I have:
And I keep getting these syntax issues:
I'm not sure how to get this going...