// // ViewController.h // Shared (App) // // Created by Stephen Carter on 4/22/26. // #import #if TARGET_OS_IOS #import typedef UIViewController PlatformViewController; #elif TARGET_OS_OSX #import typedef NSViewController PlatformViewController; #endif @interface ViewController : PlatformViewController @end