Files
leporello-js/docs/examples/todos/public/index.html

19 lines
576 B
HTML
Raw Normal View History

2023-06-15 18:16:56 +03:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redux Todos Example</title>
2023-06-15 20:56:27 +03:00
<script src='https://unpkg.com/react/umd/react.development.js'></script>
<script src='https://unpkg.com/react-dom/umd/react-dom.development.js'></script>
<script src='https://unpkg.com/redux'></script>
<script src='https://unpkg.com/react-redux'></script>
<script type='module' src='../src/index.js'></script>
2023-06-15 18:16:56 +03:00
</head>
<body>
<div id="root"></div>
</body>
</html>