-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 2.26 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Template • TodoMVC</title>
<link rel="stylesheet" href="/node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="/node_modules/todomvc-app-css/index.css">
<link rel="stylesheet" href="/css/app.css">
<link rel="stylesheet" href="/css/home.css">
<link rel="stylesheet" href="/css/login.css">
<!-- CSS overrides - remove if you don't need it -->
<!--<link rel="stylesheet" href="css/app.css">-->
</head>
<body>
<div id="root"></div>
<!-- Load Babel -->
<script src="/node_modules/@babel/standalone/babel.min.js"></script>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="/node_modules/react/umd/react.development.js"></script>
<script src="/node_modules/react-dom/umd/react-dom.development.js"></script>
<!-- Load history -->
<script src="/node_modules/history/umd/history.development.js"></script>
<!-- Load React Router and React Router DOM -->
<script src="/node_modules/@remix-run/router/dist/router.umd.min.js"></script>
<script src="/node_modules/react-router/dist/umd/react-router.development.js"></script>
<script src="/node_modules/react-router-dom/dist/umd/react-router-dom.development.js"></script>
<!-- Load our React component. -->
<script src="/node_modules/classnames/index.js"></script>
<script type="text/babel" src="/js/todos.js"></script>
<script type="text/babel" src="/js/newtodoinput.js"></script>
<script type="text/babel" src="/js/signupprompt.js"></script>
<script type="text/babel" src="/js/loginprompt.js"></script>
<script type="text/babel" src="/js/home.js"></script>
<script type="text/babel" src="/js/header.jsx"></script>
<script type="text/babel" src="/js/footer.jsx"></script>
<script type="text/babel" src="/js/todoitem.js"></script>
<script type="text/babel" src="/js/app.jsx"></script>
<script type="text/babel" src="/js/index.js"></script>
<script src="/node_modules/@descope/react-sdk/dist/index.umd.js"></script>
<!-- Scripts here. Don't remove ↓ -->
<!--<script src="node_modules/todomvc-common/base.js"></script>-->
<!--<script src="js/app.js"></script>-->
</body>
</html>