Sample State - PaulG21/Netflix-Clone GitHub Wiki

entities: {
    users: { 
        1: { 
            id: 1,
            username: "RockStarAlvin",
            email: rockstaralvin64@gmail.com
        },
        2: { 
            id: 2,
            username: "KingLion",
            email: kinglion21@gmail.com
        },
        3: { 
            id: 3,
            username: "FrostyPenguin",
            email: frosty72@gmail.com
        },
    },

   movies: { 
        1: { 
            id: 1,
            title: "Ip Man",
            genre: "action, based on true events",
            description: "An occupying Japanese general challenges Chinese men to duels to prove the superiority of the Japanese but Ip Man refuses to fight -- at first.",
            movie_length: 2,
            year: 2019,
            content_rating: "R",
            cast: "Donnie Yen, Simon Yam, Louis Fan"
        },
        2: { 
            id: 2,
            title: "Spider-Man Into the Spider-Verse",
            genre: "action, adventure, comedy",
            description: "After being bitten by a radioactive spider, Brooklyn teen Miles Morales gets a crash course in web-slinging from his alternate-dimension counterparts",
            movie_length: 2,
            year: 2018,
            content_rating: "PG",
            cast: "Shameik Moore, Jake Johson, Hailee Steinfeld"
        },
        3: { 
            id: 3,
            title: "Uncut Gems",
            genre: "crime, drama, thriller",
            description: "With his debts mounting and angry collectors closing in, a fast-talking New York jeweler risks everything in hopes of staying afloat and alive.",
            movie_length: 2,
            year: 2019,
            content_rating: "R",
            cast: "Adam Sandler, LaKeith Stanfield, Kevin Garnett"
        },
     ui: {
       loading: "true/false"
     },
     errors: {
        Sign In: [Invalid email/password],
        email: [Email already in use],
        password: [Must have minimum of 6 characters]
     } 
⚠️ **GitHub.com Fallback** ⚠️