Skip to content

Instantly share code, notes, and snippets.

@okaprinarjaya
Created April 13, 2017 08:47
Show Gist options
  • Save okaprinarjaya/cc7907661c2f76246c30554cba2a4a16 to your computer and use it in GitHub Desktop.
Save okaprinarjaya/cc7907661c2f76246c30554cba2a4a16 to your computer and use it in GitHub Desktop.
import React from 'react'
import { render } from 'react-dom'
import MainWrapper from './components/MainWrapper'
class App extends React.Component
{
render()
{
return (
<MainWrapper />
)
}
}
render(
<App />,
document.getElementById('react-app')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment