0
React.js
В момент создании React.js в файлах есть index.js и index.html, и всё что пишешь в index.js то это отправляется на div с id-root. Но только работает с index.html. У меня есть ещё несколько страниц например films.html и как мне сделать чтобы там работать с React???
10 Respostas
0
Դանիել Գրիգորյան this is your question, right?
At the time of creating React.js, the files have index.js and index.html, and everything you write in index.js is sent to the div with id-root. But only works with index.html. I have some more pages like films.html and how can I make it work with React???
You can create a div with id 'root ' in film.html file, if you no longer need index.html make sure you delete the root id in index.html
0
Index.html моя главная страница, но есть ещё и другие страницы, и я хочу использовать во всех страницах. Например на films.html, person.html, comics.html. но я не могу просто "root" подключать их, потому что так не работает.
0
Can you write the film.html in javascript as a component and then import it to your main render ?
0
Thats another option
0
Как мне это сделать?
0
const Film = () => {
return
<>
// your codes from film.index goes here
</>
}
0
Код очень длинный, и там ещё отдельно CSS есть.
0
Мне весь html код писать там?
0
Css is no big deal, you can import the css the file
0
Но куда импортировать то? В index.html?