Storybook File and Folder Structure

Storybook files are under the .storybook/ folder. Components are under the src/components/ folder.

1src/
2  components/
3    __mocks__/
4      checkout-data.ts
5      ...
6    buttons/
7      button.tsx
8      button.test.tsx
9      /stories
10        button.stories.tsx
11        button-snapshot.tsx
12        __snapshots__/
13          button-snapshot.tsx.snap
14.storybook/
15  main.ts
16  preview.tsx
17  vite.config.ts
18  vitest.setup.ts
19  storybook-providers.tsx

See Also