You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.
When I export the dumb component (React component), everything works fine, although, when exporting the container provided by react transmit, the component stops rendering and no error is shown.
Component
importReactfrom"react";importJsSdkfrom"../../api";importTransmitfrom"react-transmit";classSearchextendsReact.Component{/* exporting this class renders the component perfectly */render(){return(<div><h1>Search Page {this.props.result.toString()}</h1></div>);}}exportdefaultTransmit.createContainer/* Doesn't render */(Search,{fragments: {result(){returnJsSdk.search.suggestFor("Arab");},},});
When I export the dumb component (React component), everything works fine, although, when exporting the container provided by react transmit, the component stops rendering and no error is shown.
Component
Server.js
The text was updated successfully, but these errors were encountered: