DyteSidebar
A component which handles the sidebar and you can customize which sections you want, and which section you want as the default.
<Center>
<DyteSidebar
defaultSection="participants"
meeting={meeting}
style={{ height: '480px' }}
/>
</Center>
To see a mobile sidebar:
<div style={{ position: 'relative', height: '600px' }}>
<DyteSidebar
view="full-screen"
defaultSection="participants"
meeting={meeting}
style={{ maxWidth: '360px', margin: 'auto' }}
/>
</div>
Props
meeting
config
defaultSection
Default section
Default
'chat'
Type
"chat" | "none" | "participants" | "plugins" | "polls"
enabledSections
Enabled sections in sidebar
Default
['none']
Type
SidebarSection[]
iconPack
size
Size
Type
"lg" | "md" | "sm" | "xl"
states
States object
Type
States
t
view
View type
Default
'default'
Type
"default" | "full-screen" | "sidebar"