Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.02 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.02 KB

@twigaeng/react-hooks

A collection of tiny but useful react hooks

NPM JavaScript Style Guide

Install

npm install --save @twigaeng/react-hooks

Usage

import React from 'react'

import { useSalesDays } from '@twigaeng/react-hooks/'

const App = () => {
  const date = new Date();
  const today = date.getDay();
  const tomorrow = today + 1;
  const isTodayASalesDay = useSalesDays([today])
  const isTomorrowASalesDay = useSalesDays([tomorrow])
  return (
    <div>
      <p>Is today a sales days? {isTodayASalesDay.toString()}</p>
      <p>Is tomorrow a sales days? {isTomorrowASalesDay.toString()}</p>
    </div>
  )
}
export default App

License

MIT © joeynimu


This hook is created using create-react-hook.