@propertyWrapper public struct Wrapper { public var wrappedValue: Value public init(wrappedValue: Value) { self.wrappedValue = wrappedValue } } @resultBuilder public struct Builder { public static func buildBlock(_ component: T) -> T { component } }