react-scannable
v0.0.18
Published
>
Downloads
83
Readme
react-scannable
Install
npm install --save react-scannable
Usage
import React, { Component } from 'react';
import { Scannable, Scanner } from 'react-scannable';
class Example extends Component {
state = {
isActive: true,
};
render() {
const active = this.state.isActive;
return (
<Scanner active={active}>
<Scannable>
<button>CLICK</button>
</Scannable>
</Scanner>
);
}
}
License
MIT © shayc