To remember the user we will store a boolean as a string in AsyncStorage
It then needs to be loaded and set in redux state as well
This is the most up to date way we do things
https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/actions/edit-message.ts
Should all use the reducer builder, everything should be typed https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/reducers/edit-message.ts
Update the State type: https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/reducers/index.ts#L16-L24
Everything should sit in a "flow" saga like https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/sagas/edit-message.ts#L6
It can then be started like here https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/sagas/full-app.ts#L397
https://github.com/dn3010/sylo-mobile/blob/dapp-development/src/selectors/editMessage.ts