Skip to content

Instantly share code, notes, and snippets.

@lukewatts
Created October 17, 2018 07:25
Show Gist options
  • Save lukewatts/c057f922b3dfbbf8a041e68f6d00ed14 to your computer and use it in GitHub Desktop.
Save lukewatts/c057f922b3dfbbf8a041e68f6d00ed14 to your computer and use it in GitHub Desktop.
Medium Article - Use JSX with any MV* framework - Code Snippets - 12 - Base Component
import dom from 'jsx-render';
class Component
{
view(el)
{
el.appendChild(this.render());
}
render()
{
throw new Error('Classes which extend Component must implement a render() method which returns JSX, VirtualDOM or HTML!')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment