Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
22 lines
384 B
TypeScript
22 lines
384 B
TypeScript
import { Component } from 'react';
|
|
|
|
/**
|
|
* A React Component for joining an existing calendar meeting.
|
|
*
|
|
* @augments Component
|
|
*/
|
|
class JoinButton extends Component<void> {
|
|
/**
|
|
* Implements React's {@link Component#render}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
override render() {
|
|
// Not yet implemented.
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default JoinButton;
|