Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 20, 2019 14:01
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/455068c9bcdd5c6453eea5646ed5cc4c to your computer and use it in GitHub Desktop.
Save LukeSmetham/455068c9bcdd5c6453eea5646ed5cc4c to your computer and use it in GitHub Desktop.
class Conference extends Component {
...
render() {
const { match } = this.props;
return (
<ConferenceRoom
attendeesChat={() => null}
actionsButtons={() => null}
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