openreplay/frontend/app/components/shared/GettingStarted/GettingStarted.stories.tsx
Shekar Siri 08c5b11e30
feat(ui) - getting started (#1148)
* feat(ui) - getting started - wip

* feat(ui) - getting started - wip

* feat(ui) - getting started - wip

* feat(ui) - getting started - wip

* change(ui) - getting started

* change(ui) - getting started - css changes
2023-04-11 15:38:44 +02:00

44 lines
1 KiB
TypeScript

import React from 'react';
import { Story, Meta } from '@storybook/react';
import GettingStartedModal, { Props } from './GettingStartedModal';
import { Step } from './StepList';
const list: Step[] = [
{
title: '🕵️ Install OpenReplay',
status: 'pending',
description: 'Install OpenReplay on your website or mobile app.',
icon: 'tools',
},
{
title: '🕵️ Identify Users',
status: 'pending',
description: 'Identify users across devices and sessions.',
icon: 'users',
},
{
title: '🕵️ Integrations',
status: 'completed',
description: 'Identify users across devices and sessions.',
icon: 'users',
},
{
title: '🕵️ Invite Team Members',
status: 'ignored',
description: 'Identify users across devices and sessions.',
icon: 'users',
},
];
export default {
title: 'GettingStarted',
component: GettingStartedModal,
} as Meta;
const Template: Story<Props> = (args) => <GettingStartedModal {...args} />;
export const Default = Template.bind({});
Default.args = {
list,
};