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';