mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
24 lines
382 B
JavaScript
24 lines
382 B
JavaScript
// @flow
|
|
|
|
import { Component } from 'react';
|
|
|
|
/**
|
|
* A React Component for joining an existing calendar meeting.
|
|
*
|
|
* @augments Component
|
|
*/
|
|
class JoinButton extends Component<*> {
|
|
/**
|
|
* Implements React's {@link Component#render}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
render() {
|
|
// Not yet implemented.
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default JoinButton;
|