We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e180f11 commit f7742e7Copy full SHA for f7742e7
src/App.jsx
@@ -1,6 +1,5 @@
1
import { useState } from 'react'
2
-import reactLogo from './assets/react.svg'
3
-import viteLogo from '/vite.svg'
+import reactLogo from './assets/react.svg' // ✅ this is fine
4
import './App.css'
5
6
function App() {
@@ -10,7 +9,7 @@ function App() {
10
9
<>
11
<div>
12
<a href="https://vite.dev" target="_blank">
13
- <img src={viteLogo} className="logo" alt="Vite logo" />
+ <img src="/vite.svg" className="logo" alt="Vite logo" /> {/* ✅ changed here */}
14
</a>
15
<a href="https://react.dev" target="_blank">
16
<img src={reactLogo} className="logo react" alt="React logo" />
0 commit comments