I am very interested in learning Reactjs, i watched some tutorials on YouTube.
I also followed some other tutorials on the internet like this tutorial.
My main issue is when i try to run the first example from the tutorial mentioned above, the code gives no result, have i missed something ? (i use IntelliJ IDEA.)
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8" />
    <title>React tutorial</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div id="content"></div>
<script type="text/jsx">
    var TimerExample = React.createClass({
        getInitialState: function(){
            // This is called before our render function. The object that is
            // returned is assigned to this.state, so we can use it later.
            return { elapsed: 0 };
        },
        componentDidMount: function(){
            // componentDidMount is called by react when the component
            // has been rendered on the page. We can set the interval here:
            this.timer = setInterval(this.tick, 50);
        },
        componentWillUnmount: function(){
            // This method is called immediately before the component is removed
            // from the page and destroyed. We can clear the interval here:
            clearInterval(this.timer);
        },
        tick: function(){
            // This function is called every 50 ms. It updates the
            // elapsed counter. Calling setState causes the component to be re-rendered
            this.setState({elapsed: new Date() - this.props.start});
        },
        render: function() {
            var elapsed = Math.round(this.state.elapsed / 100);
            // This will give a number with one digit after the decimal dot (xx.x):
            var seconds = (elapsed / 10).toFixed(1);
            // Although we return an entire <p> element, react will smartly update
            // only the changed parts, which contain the seconds variable.
            return <p>This example was started <b>{seconds} seconds</b> ago.</p>;
        }
    });
    ReactDOM.render(
            <TimerExample start={Date.now()} />,
        document.getElementById('content')
    );
</script>
</body>
</html>
 
     
    