Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/calendar-sync/components/JoinButton.native.ts

21 lines
375 B

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;