Sample State - wxwang93/kickr GitHub Wiki

 {
  entities: {
   photos: {
     1: {
       id: 1,
       title: "sun",
       desc: "bright light",
       userID: 11,
     },
     2: {
       id: 2,
       title: "moon",
       desc: "wax and wane",
       authorId: 25,
     },
     3: {
       id: 3,
       title: "star",
       desc: "shining so far",
       userID: 11,
     }
   },
   users: {
     11: {
       id: 11,
       username: "Dr.Cheese",
       photos: [1, 3],
       albums: [43, 35]        
     },
     25: {
       id: 25,
       username: "LemmenyWinks",
       photos: [2],
       albums: [54, 31]
     }
   },
   comments: {
     10: {
       userId: 11,
       photoId: 1,
     },
     11: {
       userId: 25,
       photoId: 1,
     },
     12: {
       userId: 25,
       photoId: 3,
     },
   },
   albums: {
     2: {
       userId: 11,
       photos: [4, 5, 20]
     },
     4: {
       userId: 25,
       photos: [66, 64, 20],
     },
     6: {
       userId: 25,
       photos: [23, 8],
     },
   }
 },
 ui: {
   loading: true/false
 },
 errors: {
   login: ["Incorrect username/password combination"],
 },
 session: { currentUserId: 25 }
}
⚠️ **GitHub.com Fallback** ⚠️