const NOOP = () => { console.warn( '[RNScreens] Split component is supported only for iOS. Consider using an alternative layout for Web.', ); return null; }; const Column = NOOP; const Inspector = NOOP; /** * EXPERIMENTAL API, MIGHT CHANGE W/O ANY NOTICE */ // TODO: refactor to drop `Screen` suffix as the API name is really long at the moment const SplitScreen = { Column, Inspector, }; export default SplitScreen;