Hi, I’m new at programming, and I want to ask hot to make
var Contact = React.createClass({
render: function() {
return (
<div>
<h2>GOT QUESTIONS?</h2>
<p>The easiest thing to do is post on
our <a href="http://forum.kirupa.com">forums</a>.
</p>
</div>
);
}
});
In different file from index.html (from tutorial https://www.kirupa.com/react/creating_single_page_app_react_using_react_router.htm)
Thanks