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

AddMeetingUrlButton.native.ts 409B

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