Komposition
Beispiel
const modal = ({ children }) {
return (
<div className="modal">
{children}
</div>
)
} <Modal>
<Success />
</Modal>
<Modal>
<Error />
</Modal>Last updated
const modal = ({ children }) {
return (
<div className="modal">
{children}
</div>
)
} <Modal>
<Success />
</Modal>
<Modal>
<Error />
</Modal>Last updated