import type { Meta, StoryObj } from '@storybook/react'; import React, { useState } from 'react'; import { within, userEvent } from 'storybook/test'; import { Button } from '../../Button'; import { ModalSlideshow } from '../ModalSlideshow'; const slides = [ { title: 'Check request details', content: (
You will have the request details needed for approval. Once approved, the requester will be notified and can generate a dedicated virtual card for the purchase.
), illustration: (
),
},
{
title: 'What is a valid receipt',
content: (
<>
A receipt or a proof of purchase is a document provided by the merchant as record of your purchase of goods or services. A valid receipt must contain the following info:
),
},
{
title: 'Four ways to upload',
content: (
<>
This is where the description of the slide goes. The goal is to explain your message as succinctly as possible. And preferably in three lines if you use this variant.
Download the mobile app to your phone and snap a picture of your receipt directly into your account.
Drag and drop your receipt to the related payment from your desktop.
Replay to the payment confirmation email with your email attached.
Forward your receipt to receipts+[yourcompanyid]@spendesk.com. List content 5 Description of content
> ), illustration: (
),
},
];
const meta: Meta