Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import React from 'react';
  2. import Component from '../';
  3.  
  4. const MyComponent = (props) => (
  5. <Component tag='div' {...props}>
  6. {(theme) => {
  7. // ...some logic with `theme`
  8.  
  9. return props.children;
  10. }}
  11. </Component>
  12. );
  13.  
  14. export default MyComponent;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement