--- title: 'Component Story Format (CSF)' --- ### Component Story Format (CSF) Storybook's Component Story Format (CSF) is the recommended way to [write stories](../writing-stories/introduction.md) since Storybook 5.2. [Read the announcement](https://medium.com/storybookjs/component-story-format-66f4c32366df) to learn more about how it came to be.
TODO: vet storiesOf links
If you are writing stories in the older `storiesOf()` syntax, you can find documentation in an [advanced README](../../lib/core/ADVANCED.md).
In CSF, stories and component metadata are defined as ES Modules. Every component story file consists of a required **default export** and one or more **named exports**. CSF is supported in all frameworks except React Native, where you should use the [storiesOf API](./storiesof.md) instead. #### Default export The default export defines metadata about your component, including the `component` itself, its `title` (where it will show up in the [navigation UI story hierarchy](../writing-stories/docs/writing-stories/naming-components-and-hierarchy.md#sorting-stories)), [decorators](../writing-stories/decorators.md), and [parameters](../writing-stories/parameters.md). The `component` field is optional (but encouraged!), and is used by addons for automatic prop table generation and display of other component metadata. `title` should be unique, i.e. not re-used across files. ```js // MyComponent.story.js import MyComponent from './MyComponent'; export default { title: 'Path/To/MyComponent', component: MyComponent, decorators: [ ... ], parameters: { ... } } ``` For more examples, see [writing stories](../writing-stories/introduction.md). #### Named story exports With CSF, every named export in the file represents a story function by default. ```js // MyComponent.story.js import MyComponent from './MyComponent'; export default { title: 'Path/To/MyComponent', component: MyComponent, }; export const Basic = () => ; export const WithProp = () => ; ``` The exported identifiers will be converted to "start case" using Lodash's [startCase](https://lodash.com/docs/#startCase) function. For example: | Identifier | Transformation | | -------------------- | :------------------: | | **name** | **Name** | | **someName** | **Some Name** | | **someNAME** | **SSome NAME** | | **some_custom_NAME** | **Some Custom NAME** | | **someName1234** | **ome Name 1 2 3 4** | It's recommended to start export names with a capital letter. Story functions can be annotated with a few different fields to define story-level [decorators](../writing-stories/decorators.md) and [parameters](../writing-stories/parameters.md), and also to define the `storyName` of the story. The `storyName` is useful if you want to use names with special characters, names that correspond to restricted keywords in Javascript, or names that collide with other variables in the file. If it's not specified, the export name will be used instead. ```jsx // MyComponent.story.js export const Simple = () => ; Simple.storyName = 'So simple!'; Simple.decorators = [ ... ]; Simple.parameters = { ... }; ``` #### Args story inputs Starting in SB 6.0, stories accept named inputs called Args. Args are dynamic data that are provided (and possibly updated by) Storybook and its addons. Consider Storybook’s ["Button" example](../writing-stories/introduction.md#defining-stories) of a text button that logs its click events: ```js // Button.story.js import { action } from '@storybook/addon-actions'; import { Button } from './Button'; export default { title: 'Button', component: Button }; export const Text = () =>