Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Created April 19, 2018 08:54
Show Gist options
  • Save fakiolinho/23046411c198d2dde04f1ee49ba6627c to your computer and use it in GitHub Desktop.
Save fakiolinho/23046411c198d2dde04f1ee49ba6627c to your computer and use it in GitHub Desktop.
import React from 'react';
export default ({ isTruthy }) => (
<div>
{isTruthy && <p>Print sth since prop isTruthy is really truthy</p>}
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment