From bd2ef8a6d8e264a0b660c98eb7d7953f0157e1e4 Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Mon, 7 Jul 2025 13:46:26 +0300 Subject: [PATCH] docs: fix syntax error by adding missing equals signs --- docs/applying-storybook.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/applying-storybook.md b/docs/applying-storybook.md index 7c6b9af5a56..49b3ea8c348 100644 --- a/docs/applying-storybook.md +++ b/docs/applying-storybook.md @@ -40,7 +40,7 @@ The initial structure of each story file will look something like this (in types ```tsx import ComponentA from "." -const meta { +const meta = { title: "ComponentA", component: ComponentA } satisfies Meta @@ -71,7 +71,7 @@ import Button from "." type ButtonType = typeof Button -const meta { +const meta = { title: "Atoms / Form / Button", component: Button } satisfies Meta