mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
22 lines
418 B
TypeScript
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;
|