I am trying to create custom UI in react using lib-jitsi-meet api.
For this is have followed https://github.com/jitsi/lib-jitsi-meet/blob/master/doc/API.md documentation and passing.
Code Snippet:-
window.JitsiMeetJS.init();
var options={
serviceUrl:'//jitsi-meet.example.com/http-bind',
hosts: {
// XMPP domain.
domain: 'jitsi-meet.example.com',
anonymousdomain: 'guest.example.com',
muc: 'conference.jitsi-meet.example.com'
},
useStunTurn: true
}
var connection = new window.JitsiMeetJS.JitsiConnection(null, null,options);
Please if anyone can guide me in the direction on how to how to establish the connection with custom UI in react that would be really helpful.
Or could briefly explain the structure and different components in lib-jitsi-meet would really appreciate.
