Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created October 2, 2019 12:54
Show Gist options
  • Save indreklasn/16e2f819831d534a35b46be81108308f to your computer and use it in GitHub Desktop.
Save indreklasn/16e2f819831d534a35b46be81108308f to your computer and use it in GitHub Desktop.
const initialState = {
data: [
{
name: "Milton",
type: "cat",
age: 4
},
{
name: "Sammy",
type: "dog",
age: 2
},
{
name: "Joseph",
type: "turtle",
age: 34
},
{
name: "Simon",
type: "dog",
age: 8
}
]
};
export default (state = initialState, action) => {
switch (action.type) {
default: {
return { ...state };
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment