ProfilePage.js
import React from 'react'
export default function ProfilePage() {
return (
<div>
<div className='bg-slate-500 rounded-3xl text-center items-center'>
<img className='w-full h-16' src='/src/images/backgroundImage.jpg' alt='couldnt find' />
</div>
</div>
)
}
I'm getting a 401 unauthorized error.
How can i use images in react ?