React Base Fiddle (JSX)

Starting point for creating JSFiddles with React. This uses React with Addons.

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/react@latest/dist/react-with-addons.js"></script>
<script src="https://npmcdn.com/react-dom@latest/dist/react-dom.js"></script>
<script src="https://facebook.github.io/react/js/jsfiddle-integration-babel.js"></script>

<div id="container">
    <!-- This element's contents will be replaced with your component. -->
</div>

CSS

.bold {
  font-weight: bold;
}

.seperator {
  font-family: monospace;
  margin: 0px 5px;
}

JavaScript 1.7

ReactDOM.render(
  <p>
    {['books','javascript'].reduce((all, one, i) => {
			i > 0 && all.push('->')	
			all.push(one);
      return all;
		},[]).map((obj,i) => 
      <span key={i} className={i%2 ? 'seperator' : 'bold'}>{obj}</span>
		)}
  </p>,
  document.getElementById('container')
);