diff --git a/STORYBOOK.md b/STORYBOOK.md index cb4cf290a77a..3139b5493a3c 100644 --- a/STORYBOOK.md +++ b/STORYBOOK.md @@ -36,16 +36,16 @@ Here's an example story: ```javascript import React from 'react'; -import Button from '../components/Button'; +import ExpensifyButton from '../components/ExpensifyButton'; const story = { // Title field will determine how the story displays in the sidebar - title: 'Components/Button', - component: Button, + title: 'Components/ExpensifyButton', + component: ExpensifyButton, }; // Optional `args` are passed which determine the props the example component will have -const Template = args =>