starter project
2022-04-10
Written by: tdtc
project: https://gitee.com/xiaobin80/starter
app.js
import { createStore } from 'redux'
const reducerName = (state, action) => {
state;
}
const store = createStore(reducerName);
public/index.html
<!DOCTYPE html>
<html>
<head>
<title>The Complete Redux Book - Example Application</title>
</head>
<body>
<div id="app">
Redux is running: <span id="counter"></span>
</div>
<script type="text/javascript" src="../app.js"></script>
</body>
</html>