Skip to content

Instantly share code, notes, and snippets.

@iamkevingreen
Created January 27, 2017 16:31
Show Gist options
  • Save iamkevingreen/6a977065707de2a87f64aed178977f41 to your computer and use it in GitHub Desktop.
Save iamkevingreen/6a977065707de2a87f64aed178977f41 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
import { render } from 'react-dom'
class App extends Component {
render() {
return (
<div>Welcome to React Electron!</div>
)
}
}
render(<App />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment