Created
February 11, 2016 19:44
-
-
Save codemilli/231f877fbe46c0b9ae0e to your computer and use it in GitHub Desktop.
초간단 react 개발 환경 세팅
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import {render} from 'react-dom'; | |
const App = () => ( | |
<div>Hello?</div> | |
); | |
render(<App />, document.getElementById('root')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment