選択できるのは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;