We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a2161 commit d02e48aCopy full SHA for d02e48a
2 files changed
.storybook/main.ts
@@ -16,15 +16,7 @@ const config: StorybookConfig = {
16
},
17
18
"@storybook/addon-vitest",
19
- {
20
- name: "@storybook/addon-mcp",
21
- options: {
22
- toolsets: {
23
- dev: true,
24
- docs: true,
25
- },
26
27
+ "@storybook/addon-mcp",
28
],
29
framework: {
30
name: "@storybook/nextjs-vite",
src/app/(sandbox)/openapi/_components/PostList.tsx
@@ -3,6 +3,7 @@
3
import { useSuspenseQuery } from "@tanstack/react-query";
4
import { getPostsQueryOptions } from "../../../../api/queries/post.queries";
5
6
+/** Fetches and displays a list of posts from JSONPlaceholder API. */
7
export function PostList() {
8
const { data } = useSuspenseQuery(getPostsQueryOptions());
9
0 commit comments