struct CardView<Content: View>: View {
// ๐๐ป New in Swift 5.4
@ViewBuilder let content: Content
// โญ๏ธ Swift will synthesize the following (internal) initializer:
// ```
// internal init(@ViewBuilder content: () -> Content) {
// self.content = content()
// }
// ```
var body: some View {
content
}
}