您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ScreenSharingButton.js 504B

123456789101112131415161718
  1. import React from 'react';
  2. import { Platform } from 'react-native';
  3. import ScreenSharingAndroidButton from './ScreenSharingAndroidButton.js';
  4. import ScreenSharingIosButton from './ScreenSharingIosButton.js';
  5. const ScreenSharingButton = props => (
  6. <>
  7. {Platform.OS === 'android'
  8. && <ScreenSharingAndroidButton { ...props } />
  9. }
  10. {Platform.OS === 'ios'
  11. && <ScreenSharingIosButton { ...props } />
  12. }
  13. </>
  14. );
  15. export default ScreenSharingButton;