Created
November 6, 2021 08:43
-
-
Save szaranger/7c3a04037d71ca7b0fbac391437bd4ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Buttons(props) { | |
return props.render(); | |
} | |
export default function App() { | |
return ( | |
<Buttons | |
render={() => ( | |
<> | |
<button>Hello</button> | |
<button>World</button> | |
</> | |
)} | |
/> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment