mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
19 lines
785 B
HTML
19 lines
785 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Mobile React Example</title>
|
|
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" />
|
|
<link rel="stylesheet" href="//demos.jquerymobile.com/1.4.0/_assets/css/jqm-demos.css" />
|
|
</head>
|
|
<body class="ui-mobile-viewport ui-overlay-a">
|
|
<div id="content"></div>
|
|
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
|
|
<script src="//code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
|
|
<script src="../../build/react.js"></script>
|
|
<script type="text/javascript" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|