npm.io
1.2.0 • Published 5 years ago

@twigaeng/react-hooks

Licence
MIT
Version
1.2.0
Deps
0
Size
446 kB
Vulns
0
Weekly
0

@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.