Files
leporello-js/docs/examples/todos/public/index.html
Dmitry Vasilev 42b3c9a292 redux example WIP
2023-07-14 03:30:43 +03:00

19 lines
576 B
HTML

<!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>
<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>
</head>
<body>
<div id="root"></div>
</body>
</html>