import { Typography } from '@mui/material'; import type { Meta, StoryObj } from '@storybook/react'; import Timeline from './Timeline'; const data = [ { color: 'gray', end: '2024-09-25T21:15:00+01:00', start: '2024-09-25T21:00:42+01:00' }, { color: 'green', end: '2024-09-25T21:54:00+01:00', start: '2024-09-25T21:15:00+01:00' }, { color: 'red', end: '2024-09-25T22:30:00+01:00', start: '2024-09-25T21:54:00+01:00' } ]; const startDate = '2024-09-25T21:00:42+01:00'; const endDate = '2024-09-25T22:30:00+01:00'; const Template = (args): JSX.Element => { return (