Sample State - harrisonlhl123/facebook-clone GitHub Wiki

{
  entities: {
    posts: {
      1: {
        id: 1,
        body: "First day of App Academy! Feeling excited!",
        authorId: 10,
        comments: [1]
      },
      2: {
        id: 2,
        body: "Happy Thanksgiving!",
        authorId: 9,
        comments: [2]
      },
      3: {
        id: 3,
        body: "Merry Christmas and Happy New Year!",
        authorId: 8
      }
    },
    users: {
      10: {
        id: 10,
        email: "[email protected]",
        firstName: "Harrison",
        lastName: "Liang",
        birthday: 1-30-1999,
        gender: "Male",
        imgUrl: null       
      },
      9: {
        id: 9,
        email: "[email protected]",
        firstName: "Allon",
        lastName: "Nam",
        birthday: 12-12-1992,
        gender: "Male",
        imgUrl: null
      },
      8: {
        id: 8,
        email: "[email protected]",
        firstName: "Spencer",
        lastName: "Heywood",
        birthday: 10-10-1995,
        gender: "Male",
        imgUrl: null
      }
    },
    comments: {
        1: {
           id: 1, 
           userId: 10,
           postId: 1,
           body: "Gobble gobble!"
        },
        2: {
           id: 2, 
           userId: 9,
           postId: 2,
           body: "Good luck!"
        }
    }
    friends: {
        1: {
           id: 1, 
           userId: 10,
           friendId: 9
        },
        2: {
           id: 2, 
           userId: 9,
           friendId: 8
        }
    }
  },

  ui: {
    loading: true/false,
    modal: true/false
  },
  errors: {
    login: ["Invalid email or password"],
    postForm: ["Posts can't be blank"],
  },
  session: { currentUserId: 9 }
}
⚠️ **GitHub.com Fallback** ⚠️