Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created February 11, 2016 19:44
Show Gist options
  • Save codemilli/231f877fbe46c0b9ae0e to your computer and use it in GitHub Desktop.
Save codemilli/231f877fbe46c0b9ae0e to your computer and use it in GitHub Desktop.
초간단 react 개발 환경 세팅
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