Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 233 Bytes

File metadata and controls

19 lines (14 loc) · 233 Bytes

stopEvent

import { stopEvent } from '@ttrmz/react-utils'

Usage

const Example = () => {
  const handleClick = event => {
      stopEvent(event)

      ...
  }

  return <button onClick={handleClick} />
}