import React from 'react';
import car from "../image/path/here.png";
import web from "../src/images/img2.svg";
import { ReactComponent as Mysvg } from "../image/path/here.svg";
const App = () => {
return(
<>
<div>
<img src={car} alt="this is car image" />
<Mysvg />
<img src={web} className="" alt="home"></img>
</div>
</>
);
}
export default App;
Comments
Post a Comment