Skip to content

Instantly share code, notes, and snippets.

@lukewatts
Created October 17, 2018 07:46
Show Gist options
  • Save lukewatts/2af5ac4f18de27ef8d0fc17bbc2a2a33 to your computer and use it in GitHub Desktop.
Save lukewatts/2af5ac4f18de27ef8d0fc17bbc2a2a33 to your computer and use it in GitHub Desktop.
Medium Article - Use JSX with any MV* framework - Code Snippets - 15 - Test Component with Reactbone
import Reactbone, { Component } from './Reactbone';
class Test extends Component
{
constructor()
{
super();
this.view(document.getElementById('app'));
}
render()
{
return (
<h1>Testing Reactbone!</h1>
);
}
}
new Test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment