This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import SwiftUI | |
// MARK: Demo | |
struct Example: RawRepresentable, Codable { | |
let id: UUID | |
} | |
// This is functionally the same as above, but we have a neater type without creating a new protocol. |