Guest User

Untitled

a guest
May 26th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. function Maybe ({ value, children }) {
  4. if (!value)
  5. return null;
  6.  
  7. // Renderizo apenas o fragmento com o conteúdo
  8. return ( // do componente.
  9. <>
  10. {children}
  11. </>
  12. );
  13. }
  14.  
  15. export default Maybe;
Add Comment
Please, Sign In to add comment