EN
React - change logo
3
points
In this article we would like to show you how to change default logo image in React project.
By default logo is located under path src/logo.svg
and it's imported in App.js
file.
To change the logo we can one of the below solutions:
- Solution 1: Replace
src/logo.svg
file with a new one. - Solution 2: Choose new image with
.svg
or.png
extension, let's sayexample.png
, put it inside thesrc/
folder and import it inApp.js
file aslogo
changinglogo.svg
with your file name.
For our example.png
it will be:
import logo from './example.png';