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.svgfile with a new one. - Solution 2: Choose new image with
.svgor.pngextension, let's sayexample.png, put it inside thesrc/folder and import it inApp.jsfile aslogochanginglogo.svgwith your file name.
For our example.png it will be:
import logo from './example.png';