Skip to content

fers4t/oceaners-hooks

Repository files navigation

oceaners-hooks

Most using hooks for our team. IN DEVELOPMENT

NPM

Install

npm install --save oceaners-hooks@next

Usage

import React from 'react';
import { useBoolean, useFocus } from 'oceaners-hooks';

export default function Home() {
   const [isFocused, bind] = useFocus();
   console.log({ isFocused });

   return (
      <div>
         <button {...bind}>toggle</button>
      </div>
   );
}

License

MIT © fers4t