how do I force a toggle in /settings/index.jsx to be true when the user installs the app for the first time?
I've tried this at the end of the file
props.settingsStorage.setItem('myToggle', 'true')
but I get: Uncaught ReferenceError: props is not defined
If I place that statement inside the function where props was passed, I get
Best Answer