Next.js Discord

Discord Forum

am I abusing createPortal?

Unanswered
Japanese Bobtail posted this in #help-forum
Open in Discord
Japanese BobtailOP
Hmmmm I'm not sure if I'm abusing createPortal or not.
I have this page and the title of the page also needs to be rendered elsewhere in the layout.
I have it working with something like
createPortal(
  fetchedPageContent.title,
  document.getElementById('fixed-header-title')
)

I guess the alternative would be to set the title on a context provider when the page renders

0 Replies