/qrcode.react

A <QRCode/> component for use with React.

Primary LanguageJavaScript

qrcode.react

A React component to generate QR codes.

Installation

npm install qrcode.react

Usage

var React = require('react');
var QRCode = require('qrcode.react');

React.render(
  <QRCode value="http://facebook.github.io/react/" />,
  mountNode
);

Available Props

prop type default value
value string
size number 128
bgColor string (CSS color) "#FFFFFF"
fgColor string (CSS color) "#000000"