Daniel's working notes

Using guard case let syntax

In using guard case let, we assign the variable after the = sign

guard case var .content(shopState) = state.loadingState else {
	return .none
}
// we can access `shopState` here

Linked Notes: