A collection of tiny but useful react hooks
npm install --save @twigaeng/react-hooksimportReactfrom'react'import{useSalesDays}from'@twigaeng/react-hooks/'constApp=()=>{constdate=newDate();consttoday=date.getDay();consttomorrow=today+1;constisTodayASalesDay=useSalesDays([today])constisTomorrowASalesDay=useSalesDays([tomorrow])return(<div><p>Is today a sales days? {isTodayASalesDay.toString()}</p><p>Is tomorrow a sales days? {isTomorrowASalesDay.toString()}</p></div>)}exportdefaultAppMIT © joeynimu
This hook is created using create-react-hook.