Last active
March 21, 2018 00:42
-
-
Save AaronVasquez/1f60a24136c02511c94aac0fd1fc797f to your computer and use it in GitHub Desktop.
Blue Collar Lists Redux State
This file contains 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
{ | |
user: { | |
firstName: "John", | |
lastName: "Smith", | |
email: "johnsmith@gmail.com", | |
authToken: "authauthauth", // TODO: Faceboook token too. | |
trade: "CARPENTER", | |
contactable: true, | |
company: { | |
placeId: "1f604d7e42c88422760e9df629bc7253de4de7bc", | |
name: "Hammers Unlimited", | |
vicinity: "2 Holt St, Surry Hills" | |
} | |
}, | |
placesSearch: [ | |
{ | |
placeId: "p1", | |
name: "Screwdriver Land", | |
vicinity: "1 Nail Rd, New York" | |
}, | |
{ | |
placeId: "p2", | |
name: "Wrench Village", | |
vicinity: "1 Nuts Rd, New York" | |
} | |
] | |
// TODO: Fill out more of these | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment