I'm setting up the client on my React Native project
let client = new LDClient();
let config = { "mobileKey": "YOUR_MOBILE_KEY" };
let user = { "key": "user_key" }; // where do I find this info?
await client.configure(config, user);
I'm currently getting as a return value to this {"_U": 0, "_V": 0, "_W": null, "_X": null}
assuming that's because of the missing user_key
.
Where can I find my user_key
?