diff --git a/docs/repo-docs/guides/tools/storybook.mdx b/docs/repo-docs/guides/tools/storybook.mdx index 4115e6b1473c7..b403880a26d3f 100644 --- a/docs/repo-docs/guides/tools/storybook.mdx +++ b/docs/repo-docs/guides/tools/storybook.mdx @@ -280,6 +280,12 @@ Update components imports so that they reference the now co-located modules. For + import { Button } from "./button"; ``` + + You may also need to update [absolute + imports](/repo/docs/guides/tools/typescript#use-nodejs-subpath-imports-instead-of-typescript-compiler-paths) + according to your changes and usage. + + You'll also need to install any Storybook packages required for writing stories. For example, moving the story from above would require that you install `@storybook/react` into your `@repo/ui` package.