Sample State - mwei210/pixionary GitHub Wiki

{
  entities: {
    photos: {
      1: {
        id: 1,
        title: "Cherries",
        description: "Look at these cherries!",
        url: "https://cdn.pixabay.com/photo/2016/07/22/02/58/cherry-1534063_960_720.jpg",
        author_id: 4,
      },
      2: {
        id: 2,
        title: "Endless horizons",
        description: "This road seems to go on and on...",
        url: "https://cdn.pixabay.com/photo/2013/11/28/10/36/road-220058_960_720.jpg",
        author_id: 16,
      },
      3: {
        id: 3,
        title: "Not for the faint of heart!",
        description: "Don't lose your footing.",
        url: "https://cdn.pixabay.com/photo/2015/06/08/15/29/mountain-climbing-802099_960_720.jpg",
        author_id: 16,
      }
    },
    users: {
      4: {
        id: 4,
        username: "coolguy210",
        name: "Guy Incognito",
        bio: "I may be mysterious, but damn do I take good photos.",
        profile_photo_url: "https://i.ytimg.com/vi/aI4Bk4Dv2m0/hqdefault.jpg"
        followers: [11],
        following: [11, 16],
        photos: [1]
      }
    }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    photoForm: ["Cannot submit blank photo"]
  },
  session: {
    currentUser: {
      id: 4,
      username: "coolguy210",
    }
  }
}