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
In next(react ssr), I try to render a page use like this
// this common element, so much project use this, in my private node_modulesconstHeader=({ result })=><div>{result}</div>;constrenderComponent=async()=>{// mock some requestconstresult=awaitPromise.resolve(10);return<Headerresult={result}/>;};staticgetInitialProps=asyncctx=>{return{Element: awaitrenderComponent()}}render({Element}){console.log(Element)returnElement}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In next(react ssr), I try to render a page use like this
so, how to keep correct to render the common element.
Beta Was this translation helpful? Give feedback.
All reactions