Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Created November 18, 2024 23:58
Show Gist options
  • Save nedgrady/0be354bfacb5cc45355d96b356f83dd0 to your computer and use it in GitHub Desktop.
Save nedgrady/0be354bfacb5cc45355d96b356f83dd0 to your computer and use it in GitHub Desktop.
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