Reputation: 380
I made a simple to-do app using react. I need an image as the background of the site. Where do I put the img tag ? In index.html
or App.js
? And also where do I put img tag in index.html
or App.js
?
Upvotes: 1
Views: 662
Reputation: 440
You have not edit index.html. You can put img tag app.js or any other component. But you want to set background image in your app. That's why in your css file you have to add a background image. First of all create the component or structure or edit app.js component.
function App() {
return (
<div className="Main">
<h1>Welcome To React</h1>
</div>
)
}
export default App;
then add this to your css file.
.main {
background-image: url("./public/paper.gif");
}
here give your actual image url.
Thanks.
Upvotes: 1