Upgraded the app from fluxible v0.4.x to v1.0.x and all is looking well, except that this error is now happening. context.createElement is not a function
The relevant lines of code seem to be:
// ...
var app = new Fluxible({
component: Application
});
// ...
var context = app.createContext();
// ...
React.renderToString(context.createElement());
Any thoughts on where to look or what to fix?
The createElementWithContext(context, props);
has replaced context.createElement(props)
. This was to decouple Fluxible core from React.