Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/applying-storybook.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<typeof ComponentA>
Expand Down Expand Up @@ -71,7 +71,7 @@ import Button from "."

type ButtonType = typeof Button

const meta {
const meta = {
title: "Atoms / Form / Button",
component: Button
} satisfies Meta<ButtonType>
Expand Down