How to import and use web-svg, local stored - Image & SVG into your Reactjs App?

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

Popular Posts