Skip to content

Instantly share code, notes, and snippets.

@NSLog0
Last active May 19, 2016 06:17
Show Gist options
  • Save NSLog0/d8abc6811d33c41392b7ae0c15e94866 to your computer and use it in GitHub Desktop.
Save NSLog0/d8abc6811d33c41392b7ae0c15e94866 to your computer and use it in GitHub Desktop.
Turorial for React and Spring Boot
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