Guest User

Untitled

a guest
May 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import React from 'react';
  2. import AnotherComponent from './AnotherComponent';
  3.  
  4. export default ({ children, ...rest }) =>
  5. <AnotherComponent extraProp="anExtraProp" { ...rest }>
  6. { children }
  7. </AnotherComponent>;
Add Comment
Please, Sign In to add comment