mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
redux example rename
This commit is contained in:
22
docs/examples/todos-redux/public/index.html
Normal file
22
docs/examples/todos-redux/public/index.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!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'>
|
||||
if(new URLSearchParams(window.location.search).get('leporello') == null) {
|
||||
await import('../src/index.js');
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user