React: What is composition, and why is it important
What is composition
Let me demonstrate with a small example:
// no composition
<AlertDialog
open={true}
title="Don't use composition!"
/>
// with composition
<Dialog open={true}>
<Title>Use composition!</Title>
<Button>Close</Button>
</Dialo...
brense.hashnode.dev3 min read