not able to display the image getting an error as not found but i have provided the full path for it. I don't know where i am going wrong.
class App extends React.Component {
render() {
return (
<div>
<h1> hello</h1>
<img src="/home/priyanka/Finalproject/src/components/3.jpg" alt="cannot display"/>
</div>
);
}
}
export default App;