--- title: 'DocsPage' --- When you install [Storybook Docs](https://github.com/storybookjs/storybook/blob/next/addons/docs/README.md), DocsPage is the zero-config default documentation that all stories get out of the box. It aggregates your stories, text descriptions, docgen comments, props tables, and code examples into a single page for each component. The best practice for docs is for each component to have its own set of documentation and stories. ### Component parameter Storybook uses the `component` key in the story file’s default export to extract the component's description and props. ```js // Button.stories.js import { Button } from './Button'; export default { title: 'Storybook Examples/Button', component: Button, }; ``` ### Subcomponents parameter Sometimes it's useful to document multiple components together. For example, a component library’s List and ListItem components might not make sense without one another. DocsPage has the concept of a "primary" component that is defined by the `component` parameter. It also accepts one or more `subcomponents`. ```js // List.stories.js import { List, ListHeading, ListItem } from './List'; export default { title: 'Path/to/List', component: List, subcomponents: { ListHeading, ListItem }, }; ```  Subcomponent ArgsTables will show up in a tabbed interface along with the primary component. The tab titles will correspond to the keys of the subcomponents object. If you want to organize your documentation differently for component groups, we recommend using MDX. It gives you complete control over display and supports any configuration. ### Replacing DocsPage Replace DocsPage template with your own for the entire Storybook, a specific component, or a specific story. Override the `docs.page` [parameter](../writing-stories/parameters): - With null to remove docs. - With MDX docs. - With a custom component #### Story-level Override the `docs.page` [parameter](../writing-stories/parameters#story-parameters) in the story definition. ```js // Button.stories.js export const Primary = ButtonStory.bind({}); Primary.parameters = { docs: { page: null } } ``` #### Component-level Override the `docs.page` [parameter](../writing-stories/parameters#component-parameters) in the default export of the story file. ```js // Button.stories.js import { Button } from './Button'; export default { title: 'Storybook Examples/Button', component: Button, parameters: { docs: { page: null } }, }; ``` #### Global-level Override the `docs.page` [parameter](../writing-stories/parameters#global-parameters) in [`.storybook/preview.js`](../configure/overview#configure-story-rendering). ```js // .storybook/preview.js export const parameters { docs: { page: null } }); ``` ### Remixing DocsPage using doc blocks Doc blocks are the basic building blocks of Storybook Docs. DocsPage composes them to provide a reasonable UI documentation experience out of the box. If you want to make minor customizations to the default DocsPage but don’t want to write your own MDX you can remix DocsPage. That allows you to reorder, add, or omit doc blocks without losing Storybook’s automatic docgen capabilities. Here's an example of rebuilding DocsPage for the Button component using doc blocks: ```js // Button.stories.js import React from 'react'; import { Title, Subtitle, Description, Primary, Props, Stories, } from '@storybook/addon-docs/blocks'; import { Button } from './Button'; export default { title: 'Components/Button', component: Button, parameters: { docs: { page: () => ( <>