Last active
April 3, 2018 06:08
-
-
Save agoldis/34d60de19c4c8503dfb9725e6feaa84e to your computer and use it in GitHub Desktop.
redux blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
app: { | |
users: { | |
user01: { | |
id: "user01", | |
name: "John" | |
}, | |
user02: { | |
id: "user02", | |
name: "Bob" | |
} | |
}, | |
tasks: { | |
task01: { | |
title: "Wash car", | |
assignee: "user01" | |
}, | |
} | |
}, | |
ui: {...} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment