mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
const initialState = {};
|
|
|
|
export default function (state = initialState, action) {
|
|
switch (action.type) {
|
|
default:
|
|
return state
|
|
}
|
|
}
|