import React from 'react'; import { Meta, Story } from '@storybook/react'; import { Header, HeaderProps } from './index'; import { ParticipantList } from '../ParticipantList'; import { HMSThemeProvider } from '../../hooks/HMSThemeProvider'; import { fakeParticipants } from '../../storybook/fixtures/peersFixtures'; const meta: Meta = { title: 'Header', component: Header, }; export default meta; const Template: Story = args => { return (
); }; const LightTemplate: Story = args => { return (
); }; export const Default = Template.bind({}); export const Light = LightTemplate.bind({}); Default.args = { time: 1865, speaker: 'Siddhant', rightComponents: [], }; Light.args = { time: 1865, speaker: 'Siddhant', rightComponents: [], };