Merge pull request #42 from ColCh/patch-1

Remove <div> wrapper from WrapStory
This commit is contained in:
Muhammed Thanish 2016-09-25 22:12:53 +05:30 committed by GitHub
commit 690ae35e20

View File

@ -51,7 +51,7 @@ export default class WrapStory extends React.Component {
render() {
const { storyFn, context } = this.props;
return <div>{storyFn(context)}</div>;
return storyFn(context);
}
}