Answer the question
In order to leave comments, you need to log in
How to render from React component to different html pages?
There is an index js
import React from 'react'
import {render} from 'react-dom'
import Hello from './components/Hello'
render (<Hello/>, document.getElementById('root'))
import React from 'react'
function Hello() {
return (
<h1>
Hello
</h1>
)
}
export default Hello
Answer the question
In order to leave comments, you need to log in
Just include the same js that is connected to index.html and to other pages.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question