mirror of
https://github.com/bendtherules/some-hooks.git
synced 2026-08-18 22:02:37 +00:00
702 B
702 B
some-hooks
Collection of some reusable hooks that I use
Install
npm install --save some-hooks
Usage
import * as React from 'react'
import { useMyHook } from 'some-hooks'
const Example = () => {
const example = useMyHook()
return (
<div>
{example}
</div>
)
}
License
MIT © bendtherules
This hook is created using create-react-hook.