普通引入与inline引入SVG

add in v3.5.4
demo.js
import ReactLogo from './assets/react.svg'
import ReactInline from './assets/react.svg?inline'
function App() {
  return (
    <div className="App">
     <img src={ReactLogo} alt="React logo" />
      <div className="imageList">
        <span>
          inline: <img src={ReactInline} />
        </span>
        <span>
          url: <img src={ReactLogo} />
        </span>
      </div>
    </div>
  )
}
export default App