Files
jitsi-meet/react/features/calendar-sync/components/JoinButton.native.ts

22 lines
384 B
TypeScript
Raw Normal View History

import { Component } from 'react';
/**
* A React Component for joining an existing calendar meeting.
*
2021-11-04 22:10:43 +01:00
* @augments Component
*/
class JoinButton extends Component<void> {
/**
* Implements React's {@link Component#render}.
*
* @inheritdoc
*/
override render() {
// Not yet implemented.
return null;
}
}
export default JoinButton;