An open API service indexing awesome lists of open source software.

https://github.com/codewell/target-value

I just want target.value not the whole event...
https://github.com/codewell/target-value

Last synced: 11 months ago
JSON representation

I just want target.value not the whole event...

Awesome Lists containing this project

README

          

# @codewell/target-value

## Installation

```
npm install @codewell/target-value
```

## Basic Usage

```JavaScript
import targetValue from '@codewell/target-value';

const eventHandler = (inputValue) => {
// Do something with the input value
// from the input element
}

const sayHello = (inputValue, hello, there) => {
console.log(hello, there, inputValue)
}

const SomeComponent = () => (
<>


>
);
```