Answer the question
In order to leave comments, you need to log in
How to get string from React component?
Let's say I have a component
const Main = () => {
return (
<div className='main'>
<div style={{ backgroundColor: 'red' }}>
<h1 className='main__header'>Hello world</h1>
</div>
<button type='button' onClick={handleClick}>
press me
</button>
</div>
)
}
<Main/>
something like this: <Main/>
, additional options) "<div className='main'>
<div style={{ backgroundColor: 'red' }}>
<h1 className='main__header'>Hello world</h1>
</div>
<button type='button' onClick={handleClick}>
press me
</button>
</div>"
Answer the question
In order to leave comments, you need to log in
Here is what you are looking for https://ru.reactjs.org/docs/react-dom-server.html
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question