kciter / react-barcode

A <Barcode/> component for use with React.
http://kciter.github.io/react-barcode/
ISC License
400 stars 72 forks source link

Support for Preact? #29

Closed aibrahim3546 closed 5 years ago

aibrahim3546 commented 5 years ago

Are there support for preact. Because currently I am hitting this issue:

screen shot 2019-01-10 at 12 30 35 pm

This is how I install: yarn add react-barcode

This is how I did:

import { h, Component } from 'preact';
import Barcode from 'react-barcode';

...........

render() {
  return (
    <Barcode value="abc" />
  );
}