0.1.0-alpha-3 • Published 6 months ago

@mcaptcha/react-glue v0.1.0-alpha-3

Weekly downloads
-
License
(MIT OR Apache-2....
Repository
github
Last release
6 months ago

Embed mCaptcha widget in webpages built using React Js

NPM JavaScript Style Guide 0.1.0 Build) codecov

Install

npm install --save @mcaptcha/react-glue

Usage

import React, { Component, WidgetConfig } from 'react'

import MyComponent from 'react-glue'
import 'react-glue/dist/index.css'

class Example extends Component {
  render() {
    const siteKey: SiteKey = {
      key: 'randomSiteKeyAsDisplayedInAdminPanel'
    }
    const config: WidgetConfig = { siteKey }

    return <MyComponent {...config} />
  }
}