mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-03-29 22:43:07 +08:00
28 lines
745 B
HTML
28 lines
745 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
|
|
<title>Hello React</title>
|
|
|
|
<!-- React JS -->
|
|
<script src="https://fb.me/react-0.13.3.min.js"></script>
|
|
<script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
|
|
|
|
<!-- Firebase JS -->
|
|
<script src="https://cdn.firebase.com/js/client/2.2.7/firebase.js"></script>
|
|
|
|
<!-- ReactFireMixin -->
|
|
<script src="bower_components/reactfire/dist/reactfire.min.js"></script>
|
|
|
|
<!-- Markdown -->
|
|
<script src="bower_components/showdown/compressed/showdown.js"></script>
|
|
|
|
<!-- Custom JS -->
|
|
<script type="text/jsx" src="js/app.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content"></div>
|
|
</body>
|
|
</html>
|