Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 20, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LukeSmetham/11907c7ef12d68630a5f2f77f0d00f90 to your computer and use it in GitHub Desktop.
Save LukeSmetham/11907c7ef12d68630a5f2f77f0d00f90 to your computer and use it in GitHub Desktop.
...
import ActionsButtons from './ActionsButtons';
class Conference extends Component {
...
render() {
const { match } = this.props;
return (
<ConferenceRoom
attendeesChat={() => null}
actionsButtons={ActionsButtons}
isWidget={false}
autoJoin
kickOnHangUp
handleOnLeave={this.handleOnLeave}
handleOnConnect={this.handleOnConnect}
{...this.settings}
conferenceAlias={match.params.conferenceAlias}
/>
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment