// // ToolboxHeader.swift // RNPlayground // // Created by Artur Gurgul on 02/08/2025. // import SwiftUI struct ToolboxHeader: View { @EnvironmentObject var sharedState: SharedState var body: some View { HStack { Text("Actions") Button("Make it blue") { print("Making it blue") sharedState.send(message: "hello from Swift!") } } } }