Update index.md

The react starter guide docs point to a `<Button>` component that doesn't exist. This PR corrects that.
This commit is contained in:
Mike Borsare 2018-10-20 17:03:01 -04:00 committed by GitHub
parent b17485925e
commit 6dbc64656d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ Now you can write some stories inside the `../stories/index.js` file, like this:
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import Button from '../components/Button';
import { Button } from '@storybook/react/demo';
storiesOf('Button', module)
.add('with text', () => (