yanbingbing / rc-qrcode

QRCode Component for React

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ReactDomNode

obsidianart opened this issue · comments

ReactDOM.findDOMNode is discourage (and it's not imported so the module was crashing).

    render() {
        return <canvas ref={(c) => this.canvas = c} />;
    }
    draw() {
        if (!this.canvas) return;
       let canvas = this.canvas

thank you for your issue