I have a somewhat simple doubt, maybe others have had it before. I'm starting with react and, as we know, the main thing is to change content segments through the components. Now, I have a specific doubt. If when updating a segment, I would like to include direct HTML (without having to create it in the render method of the jsx file, but an html file). Since I do not require certain logic with such HTML, can I do it?
Punctually, I'm working with an app, in which I have two segments and I update both: "main" and "footer". But there are sections, in which for example, I want or need to include text in html, images or other elements that are static and I really do not need to verify anything, so it seems to me that I fill the files jsx with unnecessary code, but I do not know, how could you add them if they are part of a component that is updated.
Thank you.