We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16d348a commit 01376b5Copy full SHA for 01376b5
packages/blade/src/components/Carousel/__tests__/Carousel.test.stories.tsx
@@ -3,11 +3,11 @@ import type { StoryFn } from '@storybook/react';
3
import { within, userEvent } from '@storybook/testing-library';
4
import { expect, jest } from '@storybook/jest';
5
import type { Mock } from 'jest-mock';
6
+import React from 'react';
7
import type { CarouselProps } from '../';
8
import { Carousel as CarouselComponent } from '../';
9
import { CarouselExample } from '../Carousel.stories';
10
import { Box } from '~components/Box';
-import React from 'react';
11
12
const sleep = (ms: number): Promise<void> => new Promise((resolve) => setTimeout(resolve, ms));
13
0 commit comments