Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/7c3a04037d71ca7b0fbac391437bd4ab to your computer and use it in GitHub Desktop.
Save szaranger/7c3a04037d71ca7b0fbac391437bd4ab to your computer and use it in GitHub Desktop.
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