Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 590 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 590 Bytes

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