0.0.3 • Published 5 years ago

tm-react-ocr v0.0.3

Weekly downloads
12
License
-
Repository
-
Last release
5 years ago

Getting Started

npm i tm-react-ocr

Get your api key: talentomobile.

Configuration

Ensure you import the module and the dependencies:

Basic Example

class App extends Component {
  detected(e){
    console.log(e);
  }
  result(e){
    console.log(e);
  }
  render() {
    return (
      <TmReactOcr result={this.result} detected={this.detected} video={false} token="YOUR-API-TOKEN"/>
    );
  }
}