Last active
May 19, 2016 06:17
-
-
Save NSLog0/d8abc6811d33c41392b7ae0c15e94866 to your computer and use it in GitHub Desktop.
Turorial for React and Spring Boot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import { render } from 'react-dom' | |
class Home extends Component { | |
render() { | |
return ( | |
<div>Hello, World!</div> | |
) | |
} | |
} | |
render((<Home />), document.getElementById('app')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment