showing content in an other section of the current component #3492
-
I'm new to preact and i'm still learning, so i hope to find some good places where to look for good information. My webpage looks something like this:
the header is only refreshed only when you navigate to an other page. My question is how can i add content inside |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Preact causes re-render when state changes so whatever the page-section is subscribes to can change the content of action-buttons/... if you subscribe to that state within that component through context/... |
Beta Was this translation helpful? Give feedback.
-
Ha, now i understand what was happen. Thanks for pointing this issue out.
where the actionbuttons component places the child elements under the |
Beta Was this translation helpful? Give feedback.
Preact causes re-render when state changes so whatever the page-section is subscribes to can change the content of action-buttons/... if you subscribe to that state within that component through context/...