Sample State - slavnikov/BootUp GitHub Wiki

{
  entities: {
    projects: {
      1: {
        id: 1,
        title: "Perpetual Motion Electricity Generator",
        adminId: 11,
        pledgeGoal: 250000,
        pledgetotal: 3000000,
        assets: "url to cover image"
      },
      2: {
        id: 2,
        title: "Revolutionary Super Strong Metal Alloy",
        adminId: 58,
        pledgeGoal: 500000,
        pledgetotal: 5000000,
        assets: "url to cover image"
      },
      3: {
        id: 3,
        title: "A New Skyscraper Framework Design",
        adminId: 6,
        pledgeGoal: 10000,
        pledgetotal: 30000,
        assets: "url to cover image"
      }
    },
    users: {
      11: {
        id: 11,
        username: "John Galt",
        pictureUrl: "url to profile image"
      },
      58: {
        id: 58,
        username: "Hank Rearden",
        pictureUrl: "url to profile image"
      },
      6: {
        id: 5,
        username: "Howard Roark",
        pictureUrl: "url to profile image"
      }
    }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    chirpForm: ["Chirp body cannot be blank"],
  },
  session: { currentUserId: 25 }
}
```js