npm install --save example-hook
import 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.