Skip to content

Instantly share code, notes, and snippets.

@asis
Created August 28, 2019 10:03
Show Gist options
  • Save asis/39e57ef94f97898240d545ee17f3aadc to your computer and use it in GitHub Desktop.
Save asis/39e57ef94f97898240d545ee17f3aadc to your computer and use it in GitHub Desktop.
import LibraryPen from "some-library";
const SecretNote = ({ pen }) => (
<span>🕵️‍♀️{React.cloneElement(pen, { text: "this is a secret" })}🕵️‍♀️</span>
);
const AdaptedPen = ({ text }) => <LibraryPen write={text} />;
const App = () => <SecretNote pen={<AdaptedPen />} />;
ReactDOM.render(<App />, document.getElementById("app"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment