📅  最后修改于: 2022-03-11 15:04:13.345000             🧑  作者: Mango
const intialState = {
returned: []
}
const showOnReviewSlice = createSlice({
name: 'showOnReview',
initialState,
reducers: {
reset: state => initialState
}
});