```ts const SessionAuthNoSSR = dynamic( new Pr...
# support-questions-legacy
l
Copy code
ts
const SessionAuthNoSSR = dynamic(
    new Promise<any>((res) =>
        res(SessionRecipe.SessionAuth)
    ),
    { ssr: false }
)

return (
   <SessionAuthNoSSR>
      props here
   </SessionAuthNoSSR>
)
2 Views