Created
November 18, 2024 23:58
-
-
Save nedgrady/0be354bfacb5cc45355d96b356f83dd0 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 CustomModal({ onClose }: CustomModalProps) { | |
return ( | |
<div> | |
<div>Some modal content</div> | |
<div> | |
<button>OK</button> | |
<button>Cancel</button> | |
</div> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment