Skip to content

Instantly share code, notes, and snippets.

@hieptl
Last active November 22, 2021 12:00
Show Gist options
  • Save hieptl/83506a08eb9ba307a63167a153106fde to your computer and use it in GitHub Desktop.
Save hieptl/83506a08eb9ba307a63167a153106fde to your computer and use it in GitHub Desktop.
Modal.js - Discord Clone
import { useState } from 'react';
const withModal = ModalComponent => WrapperComponent => {
return function () {
const [isModalShown, setIsModalShown] = useState(false);
return (
<>
<WrapperComponent toggleModal={setIsModalShown}/>
{isModalShown && <ModalComponent toggleModal={setIsModalShown} />}
</>
)
}
}
export default withModal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment