jiti-meet/react/features/calendar-sync/components/AddMeetingUrlButton.native.js

24 lines
416 B
JavaScript
Raw Normal View History

// @flow
import { Component } from 'react';
/**
* A React Component for adding a meeting URL to an existing calendar meeting.
*
2021-11-04 21:10:43 +00:00
* @augments Component
*/
class AddMeetingUrlButton extends Component<*> {
/**
* Implements React's {@link Component#render}.
*
* @inheritdoc
*/
render() {
// Not yet implemented.
return null;
}
}
export default AddMeetingUrlButton;