npm install --save example-hookimport React, { Component } from 'react'
import { useMyHook } from 'example-hook'
const Example = () => {
const example = useMyHook()
return (
<div>{example}</div>
)
}MIT © MedinaGithub
This hook is created using create-react-hook.