Skip to content

Commit

Permalink
Remove <div> wrapper from WrapStory
Browse files Browse the repository at this point in the history
Closes #41
  • Loading branch information
ColCh authored Sep 25, 2016
1 parent 846079d commit 2f090a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WrapStory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 2f090a5

Please sign in to comment.