Sample State - michellepanzironi/like-a-genius-fullstack GitHub Wiki

{
  entities: {
    songs: {
      1: {
        id: 1,
        title: "The Sweater Song",
        artist_id: 11,
        album_id: 1,
        song_annotations: [1, 3, 5],
        song_comments: [1, 3, 5],
      },
      2: {
        id: 2,
        title: "Emotion",
        artist_id: 8,
        album_id: 2,
        song_annotations: [2, 4, 7],
        song_comments: [2, 4, 7]
      },
      3: {
        id: 3,    
        title: "Uptown Funk",
        artist_id: 2,
        album_id: 3,
        song_annotations: [8, 9, 10],
        song_comments: [8, 9, 10]
      }
    },
    artists: {
      11: {
        id: 11,
        name: "Weezer",
      },
      8: {
        id: 8,
        username: "Mariah Carey",
      },
      2: {
        id: 2,
        name: "Bruno Mars",
      }
    users: {
      12: {
        id: 12,
        username: "trixie_mattel",
        authoredAnnotationIds: [2],
        likedCommentIds: [1, 3],
        imgUrl: "https://pre00.deviantart.net/fd5c/th/pre/i/2018/062/4/6/trixie_mattel_iq_kitty_girl_rpdr_all_stars_3_by_sebaseroam-dc4ulyv.jpg"
      },
      25: {
        id: 25,
        username: "katya_zamolodchikova",
        authoredAnnotationIds: [4],
        likedCommentIds: [2, 7],
        imgUrl: "https://pbs.twimg.com/profile_images/1002621040512544768/HAJXfZtJ_400x400.jpg"
      }
    }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username or password"],
    annotateForm: ["Annotation body cannot be blank"],
  },
  session: { currentUserId: 25 }
}