Files
jitsi-meet/react/features/calendar-sync/components/AddMeetingUrlButton.native.ts
2023-04-24 14:09:50 +03:00

22 lines
409 B
TypeScript

import { Component } from 'react';
/**
* A React Component for adding a meeting URL to an existing calendar meeting.
*
* @augments Component
*/
class AddMeetingUrlButton extends Component<void> {
/**
* Implements React's {@link Component#render}.
*
* @inheritdoc
*/
render() {
// Not yet implemented.
return null;
}
}
export default AddMeetingUrlButton;