mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
import testData from '../test-data';
|
|
|
|
const initialState = { ...testData.history };
|
|
export default function historySBReducer(state = initialState, action) {
|
|
switch (action.type) {
|
|
default:
|
|
return state;
|
|
}
|
|
}
|