sample state - Russel-Tsang/Eventnite GitHub Wiki

{
  entities: {
    users: {
      1: {
        id: 1,
        fName: "Gary",
        lName: "Floodwater"
        email: "[email protected]",
        createdEventIds: [1],
        likedEventIds: [1,2],
        followedEventsIds: [2],
        registeredEventIds: [2]
      },
      2: {
        id: 2,
        fName: "Jayden",
        lName: "Gordon"
        email: "[email protected]",
        createdEventIds: [2],
        likedEventIds: [1],
        followedEventIds: [1]
        registeredEventIds: []
      },
    },
    events: {
      1: {
        id: 1,
        title: "70s Disco",
        description: "", 
        category: "party"
        locationId: ,
        followerIds: [2],
        registeredUserIds: [],
        creatorId: 1       
      },
      2: {
        id: 2,
        title: "Jazz at Night",
        description: "",
        category: "Music"
        locationId: "",
        followerIds: [1],
        registeredUserIds: [1],
        creatorId: 2 
      }
    },
    addresses: {
      1: {
        id: 1,
        street: "20 Sleepy Hollow Ave",
        city: "", 
        state: "party"
        zipCode: ,
        user_id: 1,       
      },
      2: {
        id: 2,
        street: "Jazz at Night",
        city: "",
        state: "Music"
        zipCode: "",
        user_id: 2, 
      }
    },
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    eventTitle: ["Event title cannot be blank"],
    eventDescription: ["Event description cannot be blank"],
  },
  session: { currentUser: 1 }
}
⚠️ **GitHub.com Fallback** ⚠️