Skip to content

Instantly share code, notes, and snippets.

@esnya
Created May 26, 2015 02:45
Show Gist options
  • Save esnya/269a8ca9e82a1f88f7c0 to your computer and use it in GitHub Desktop.
Save esnya/269a8ca9e82a1f88f7c0 to your computer and use it in GitHub Desktop.
Hello React
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Hello React</title>
<script src="https://fb.me/react-0.13.3.js"></script>
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
</head>
<body>
<div id="example"></div>
<script type="text/jsx">
React.render(
<h1>Hello, world!</h1>,
document.getElementById('example')
);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment