This directory contains code from Point-Free Episode: Shared State: User Defaults, Part 2
We can now persist simple bits of state to user defaults using the
@Shared
property wrapper, but there is more work to be done. We need to observe changes to user defaults in order to play those changes back to@Shared
, and we need to put in a bit of extra work to make everything testable.