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

AddMeetingUrlButton.native.js 415B

1234567891011121314151617181920212223
  1. // @flow
  2. import { Component } from 'react';
  3. /**
  4. * A React Component for adding a meeting URL to an existing calendar meeting.
  5. *
  6. * @extends Component
  7. */
  8. class AddMeetingUrlButton extends Component<*> {
  9. /**
  10. * Implements React's {@link Component#render}.
  11. *
  12. * @inheritdoc
  13. */
  14. render() {
  15. // Not yet implemented.
  16. return null;
  17. }
  18. }
  19. export default AddMeetingUrlButton;