react-storybook-story
v2.2.0
Published
React Storybook Story Component
Readme
React Storybook Story
A component to add additional information with your react-storybook stories.

To get started, install the module as a devDependency
npm install -D react-storybook-storyWhen writing stories, wrap your component with the <Story /> component and use the info parameter to give additional info.
import {storiesOf} from '@kadira/storybook';
import Story from 'react-storybook-story';
import 'react-storybook-story/styles.css';
storiesOf('<MyComponent />', module)
.add('my-example-story', function () {
const info = `
This story will render **MyComponent** with the
_foo_ parameter set to "bar"
`;
return (
<Story info={info}>
<MyComponent foo={'bar'} />
</Story>
);
});The FAQ
Error loading styles.css file
To load the stylesheet make sure your webpack config has style-loader and raw-loader setup properly. Modify your .storybook/webpack.config.js file to include the style-loader.
const path = require('path');
module.exports = {
module: {
loaders: [
{
test: /\.css?$/,
loaders: ['style', 'raw'],
include: path.resolve(__dirname, '../'),
},
],
},
};Credits
- markdown styles are based on markdowncss/modest
