# @jsjoeio/react-use-the-things

> a package that gives you custom React things

Latest version **1.0.3** (published 2019-08-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install @jsjoeio/react-use-the-things
pnpm add @jsjoeio/react-use-the-things
yarn add @jsjoeio/react-use-the-things
bun add @jsjoeio/react-use-the-things
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2019-08-18 |
| First published | 2019-07-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=8 |
| Dependencies | 0 |
| Unpacked size | 7.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | jsjoeio |
| Maintainers | jsjoeio |

## Links

- npm: https://www.npmjs.com/package/@jsjoeio/react-use-the-things
- Repository: https://github.com/jsjoeio/react-use-the-things
- Homepage: https://github.com/jsjoeio/react-use-the-things#readme
- Issues: https://github.com/jsjoeio/react-use-the-things/issues
- npm.io page: https://npm.io/package/@jsjoeio/react-use-the-things

## Recent versions

- 1.0.3 (latest) — 2019-08-18
- 1.0.2 — 2019-07-05
- 1.0.1 — 2019-07-04
- 1.0.0 — 2019-07-04

## README

# @jsjoeio/react-use-the-things

> a package that gives you custom React things

[![NPM](https://img.shields.io/npm/v/@jsjoeio/react-use-the-things.svg)](https://www.npmjs.com/package/@jsjoeio/react-use-the-things) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save @jsjoeio/react-use-the-things
```

## Usage

```jsx
import React from 'react'

import { TwilioLogo, useCounter, useDocumentTitle } from '@jsjoeio/react-use-the-things'

const App = () => {
  const [count, setCount] = useCounter(4)
  useDocumentTitle(count)
  return (
    <div>
      <TwilioLogo
        height='240px'
        width='520px'
        customStyles={{ border: '1px solid black' }}
    />
    <p>Currently, the count is: {count}</p>
    <button onClick={() => setCount(count + 1)}>Add 1</button>
    <button onClick={() => setCount(count - 1)}>Subtract 1</button>
    </div>
  )
}
```

## License

MIT © [jsjoeio](https://github.com/jsjoeio)

---
_Source: https://npm.io/package/@jsjoeio/react-use-the-things · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
