import React from 'react'; import { Meta, Story } from '@storybook/react'; import { ParticipantList } from './ParticipantList'; import { ParticipantListProps } from './ParticipantProps'; import { HMSThemeProvider } from '../../hooks/HMSThemeProvider'; const meta: Meta = { title: 'ParticipantList', component: ParticipantList, }; export default meta; const Template: Story = args => ( ); const DarkTemplate: Story = args => ( ); const LightTemplate: Story = args => ( ); export const Default = Template.bind({}); export const Real = Template.bind({}); export const Dark = DarkTemplate.bind({}); export const Light = LightTemplate.bind({});