Guest User

Untitled

a guest
Feb 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. Post.js
  2. ...
  3. <Text size="large" bold>
  4. {`${rank}. `}
  5. <RouterText to="post" size="large" bold {//HERE I WANT ALL PROPS EXCEPT RANK}>
  6. {`${title}`}
  7. </RouterText>
  8. {url && (
  9. <Link href={url} target="_blank">
  10. <LinkIcon type="link" />
  11. </Link>
  12. ...
  13.  
  14. Text.js
  15. ...
  16. export const RouterText = Text.withComponent(RouterLink);
  17. ...
  18.  
  19. PostDetails.js
  20. // HERE I WANT ALL PROPS FROM FeedPost (i.e. all props for Post.js except for rank)
  21. const PostDetails = () => (
  22. <Row type="flex" align="middle">
  23. This will be the post details page. Hello there, World.
  24. </Row>
  25. );
Add Comment
Please, Sign In to add comment