JSPM

  • Created
  • Published
  • Downloads 1093641
  • Score
    100M100P100Q182460F
  • License MIT

A <QRCode /> component for React.

Package Exports

  • react-qr-code

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-qr-code) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-qr-code

Build Status npm package Dependency Status devDependency Status peerDependency Status

A component for React. This library works with React and React Native (uses ART module).

Installation

Using npm:

npm install --save react-qr-code

The Gist

import React from 'react';
import ReactDOM from 'react-dom';
import QRCode from 'react-qr-code';

ReactDOM.render(
  <QRCode value="hey" />,
  document.getElementById('Container')
);

API

prop type default value
value string
size number 128
bgColor string (CSS color) '#FFFFFF'
fgColor string (CSS color) '#000000'
level string ('L' 'M' 'Q' 'H') 'L'

Examples

License

MIT