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