1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/.storybook/reducers/sb-history-reducer.js

10 lines
221 B
JavaScript
Raw Normal View History

2021-09-29 20:43:18 +02:00
import testData from '../test-data';
const initialState = { ...testData.history };
export default function historySBReducer(state = initialState, action) {
switch (action.type) {
default:
return state;
}
}