反応UIにストーリーブックをインストールしようとしています。このコマンドを実行すると: npm run storybook
これらのリンクを参照しました 未定義のプロパティ「文字列」を読み取れません | React.PropTypes | LayoutPropTypes.js を作成し、提案されたソリューションを適用しようとしましたが、それでも同じエラーが発生します。prop タイプ ライブラリを明示的にインストールし、反応バージョンの前に ^ を削除しました。反応型と小道具型のバージョンは次のとおりです: "react": "16.3.2", "prop-types": "^15.6.2"
私のコードは次のようになります:
import React from 'react';
import { storiesOf } from '@storybook/react';
import { configure } from '@kadira/storybook';
import { action } from '@storybook/addon-actions';
import PropTypes from 'prop-types';
import Button from '../components/Button';
storiesOf('Button', module)
.add('with text', () => (
<Button onClick={action('clicked')}>Hello Button</Button>
))
.add('with some emoji', () => (
<Button onClick={action('clicked')}><span role="img" aria-label="so cool"> </span></Button>
));
私はまだいくつかのステップを逃していますか?