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