Skip to content

Commit

Permalink
refactor(component): revert
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrachet committed Jun 9, 2018
1 parent 9ce0907 commit 8be9d02
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/placeholder.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,18 @@ const compose = (f, g) => x => f(g(x));
export default {
ImageContent: connect(ImageContent),
Paragraph: connect(Paragraph),
Media: compose(connect, stylify(computeStyleMedia))(View),
Line: compose(connect, stylify(computeStyleLine))(View),
Media: compose(
connect,
stylify(computeStyleMedia),
)(View),
Line: compose(
connect,
stylify(computeStyleLine),
)(View),
MultiWords: connect(MultiWords),
Box: compose(connect, stylify(computeStyleBox))(View),
Box: compose(
connect,
stylify(computeStyleBox),
)(View),
connect,
};

0 comments on commit 8be9d02

Please sign in to comment.