123456789101112131415161718192021 |
- 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
- */
- render() {
- // Not yet implemented.
-
- return null;
- }
- }
-
- export default JoinButton;
|