@arthur-lobo/react-onclickout
v1.1.1
Published
React wrapper component to handle click outside of a component
Downloads
140
Readme
React Clickout
A simple component that can detect when the user clicks outside!
Usage
import { ClickOutWrapper } from "@arthur-lobo/react-onclickout"
function MyComponent() {
return (
<ClickOutWrapper onClickOut={() => alert("Goodbye World!")}>
<div>Hello World!</div>
</ClickOutWrapper>
)
}
Credits
Based on react-onclickout logic