RN-useReducer-Context
app页面定义-->中间文件(LoginContext)-->使用的页面中间文件:
import React from 'react';
export default React.createContext();app页面:
先定义:
const initiaState = {
logined: false,
};
function reducer(prevState, action) {
let clone = JSON.parse(JSON.stringify(prevState));
switch (action.type) {
...