--- title: What's a story? sidebar: order: 4 title: What's a story? --- A story captures the rendered state of a UI component. Developers write multiple stories per component that describe all the “interesting” states a component can support. When you installed Storybook, the CLI created example components that demonstrate the types of components you can build with Storybook: Button, Header, and Page. Each example component has a set of stories that show the states it supports. You can browse the stories in the UI and see the code behind them in files that end with `.stories.js|ts`. The stories are written in [Component Story Format](../api/csf.mdx) (CSF), an ES6 modules-based standard for writing component examples. Let’s start with the `Button` component. A story is an object that describes how to render the component in question. Here’s how to render `Button` in the “primary” state and export a story called `Primary`. {/* prettier-ignore-start */} {/* prettier-ignore-end */} ![Button story with args](../_assets/get-started/example-button-args.png) View the rendered `Button` by clicking on it in the Storybook sidebar. Note how the values specified in [`args`](../writing-stories/args.mdx) are used to render the component and match those represented in the [Controls](../essentials/controls.mdx) tab. Using `args` in your stories has additional benefits: * `Button`'s callbacks are logged into the [Actions](../essentials/actions.mdx) tab. Click to try it. * `Button`'s arguments are dynamically editable in the Controls tab. Adjust the controls. ## Working with stories Storybook makes it easy to work on one component in one state (aka a story) at a time. When you edit a component's code or its stories, Storybook will instantly re-render in the browser. No need to refresh manually. ### Create a new story If you're working on a component that does not yet have any stories, you can click the ➕ button in the sidebar to search for your component and have a basic story created for you. If you're working on a component that does not yet have any stories, you can create a story file for your component with a new story. We recommend copy/pasting an existing story file next to the component source file, then adjusting it for your component.