I just saw this function
function reducer(_, { type, payload }) {
passed to useReducer this way
const [state, dispatch] = useReducer(reducer, initialState);
What is the meaning of the 1st parameter "_" in function reducer?
I just saw this function
function reducer(_, { type, payload }) {
passed to useReducer this way
const [state, dispatch] = useReducer(reducer, initialState);
What is the meaning of the 1st parameter "_" in function reducer?