useCustomHook

A starter for creating a new React hook

github.com/colbyfayock/use-custom-hook

How to use

Add your instructions here!

Examples

Set and grab message

Input:

const hookSettings = {
  message: 'Hello, custom hook!'
}

const { message } = useCustomHook(hookSettings);

Output:

Hello, custom hook!