Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
krawaller committed Aug 22, 2014
0 parents commit 4f2b72a
Show file tree
Hide file tree
Showing 7 changed files with 32,026 additions and 0 deletions.
22 changes: 22 additions & 0 deletions index.html
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<script src="lib/react.js"></script>
<script src="lib/JSXTransformer.js"></script>
<script type="text/jsx" src="src/status.jsx"></script>
<script type="text/jsx" src="src/board.jsx"></script>
<script type="text/jsx" src="src/tile.jsx"></script>
<link rel="stylesheet" href="styles.css" type="text/css"></link>
</head>
<body>
<div id="wrapper"></div>
<script type="text/jsx">
/** @jsx React.DOM */

React.renderComponent(
<Board bricks={["foo","bar","baz"]} />,
document.getElementById('wrapper')
);
</script>
</body>
</html>

0 comments on commit 4f2b72a

Please sign in to comment.