jitsi-meet/react/features/calendar-sync/components/AddMeetingUrlButton.native.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

22 lines
418 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
*/
override render() {
// Not yet implemented.
return null;
}
}
export default AddMeetingUrlButton;