Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1 KB

doc-block-primary.mdx

File metadata and controls

39 lines (25 loc) · 1 KB
title sidebar
Primary
order title
9
Primary

The Primary block displays the primary (first defined in the stories file) story, in a Story block. It is typically rendered immediately under the title in a docs entry.

Screenshot of Primary block

{/* prettier-ignore-start */}

import { Meta, Primary } from '@storybook/blocks';
import * as ButtonStories from './Button.stories';

<Meta of={ButtonStories} />

<Primary />

{/* prettier-ignore-end */}

Primary

import { Primary } from '@storybook/blocks';

Primary is configured with the following props:

of

Type: CSF file exports

Specifies which CSF file is used to find the first story, which is then rendered by this block. Pass the full set of exports from the CSF file (not the default export!).