From 810c1409d6d0ae558153d71ecdfea9dc76ccb543 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Thu, 21 Oct 2021 19:40:12 +0100 Subject: [PATCH] fixed the imports to their correct packages --- .../angular/form-story-component-with-play-function.ts.mdx | 2 +- .../react/form-story-component-with-play-function.js.mdx | 2 +- .../svelte/form-story-component-with-play-function.js.mdx | 2 +- .../vue/form-story-component-with-play-function.2.js.mdx | 2 +- .../vue/form-story-component-with-play-function.3.js.mdx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/snippets/angular/form-story-component-with-play-function.ts.mdx b/docs/snippets/angular/form-story-component-with-play-function.ts.mdx index 7e890d892c8..415f907d2ad 100644 --- a/docs/snippets/angular/form-story-component-with-play-function.ts.mdx +++ b/docs/snippets/angular/form-story-component-with-play-function.ts.mdx @@ -1,7 +1,7 @@ ```ts // Form.stories.ts -import { userEvent, within } from '@storybook/addon-interactions'; +import { userEvent, within } from '@storybook/testing-library'; import { LoginForm } from './LoginForm.component'; diff --git a/docs/snippets/react/form-story-component-with-play-function.js.mdx b/docs/snippets/react/form-story-component-with-play-function.js.mdx index 8988590957a..e338d7f60ae 100644 --- a/docs/snippets/react/form-story-component-with-play-function.js.mdx +++ b/docs/snippets/react/form-story-component-with-play-function.js.mdx @@ -1,7 +1,7 @@ ```js // Form.stories.js | Form.stories.jsx | Form.stories.ts | Form.stories.tsx -import { userEvent, within } from '@storybook/addon-interactions'; +import { userEvent, within } from '@storybook/testing-library'; import { LoginForm } from './LoginForm'; diff --git a/docs/snippets/svelte/form-story-component-with-play-function.js.mdx b/docs/snippets/svelte/form-story-component-with-play-function.js.mdx index 6680f8b5eb8..963c699318f 100644 --- a/docs/snippets/svelte/form-story-component-with-play-function.js.mdx +++ b/docs/snippets/svelte/form-story-component-with-play-function.js.mdx @@ -1,7 +1,7 @@ ```js // Form.stories.js -import { userEvent, within } from '@storybook/addon-interactions'; +import { userEvent, within } from '@storybook/testing-library'; import LoginForm from './LoginForm.svelte'; diff --git a/docs/snippets/vue/form-story-component-with-play-function.2.js.mdx b/docs/snippets/vue/form-story-component-with-play-function.2.js.mdx index 81492fa1cf3..26200adba96 100644 --- a/docs/snippets/vue/form-story-component-with-play-function.2.js.mdx +++ b/docs/snippets/vue/form-story-component-with-play-function.2.js.mdx @@ -1,7 +1,7 @@ ```js // Form.stories.js | Form.stories.jsx | Form.stories.ts | Form.stories.tsx -import { userEvent, within } from '@storybook/addon-interactions'; +import { userEvent, within } from '@storybook/testing-library'; import LoginForm from './LoginForm.vue'; diff --git a/docs/snippets/vue/form-story-component-with-play-function.3.js.mdx b/docs/snippets/vue/form-story-component-with-play-function.3.js.mdx index 8296da66989..45415a182ca 100644 --- a/docs/snippets/vue/form-story-component-with-play-function.3.js.mdx +++ b/docs/snippets/vue/form-story-component-with-play-function.3.js.mdx @@ -1,7 +1,7 @@ ```js // Form.stories.js -import { userEvent, within } from '@storybook/addon-interactions'; +import { userEvent, within } from '@storybook/testing-library'; import LoginForm from './LoginForm.vue';