React login buttons replacement for blaze

Hey,
I’m searching for a react implementation of the blaze login form.
Because electron does not render the wrapped blaze login forms

Do anyone have the same issue?

import React, { Component } from ‘react’;
import ReactDOM from ‘react-dom’;
import { Template } from ‘meteor/templating’;
import { Blaze } from ‘meteor/blaze’;

export default class AccountsUIWrapper extends Component {
componentDidMount() {
// Use Meteor Blaze to render login buttons
this.view = Blaze.render(Template.loginButtons,
ReactDOM.findDOMNode(this.refs.container));
}
componentWillUnmount() {
// Clean up Blaze view
Blaze.remove(this.view);
}

render() {
// Just render a placeholder container that will be filled in
return ;
}
}

Not sure this is what you’re looking for, but there are packages to use blaze in react and vice versa.

he elie,
thanks for our quick reply.
no i want to replace all blaze parts with react for a electron build desktop app because electron does not render the wrapped blaze parts like the one above.
I thought that some already build a solution for that :slight_smile: