前端学习(2306):react之组件使用之图片使用
生活随笔
收集整理的這篇文章主要介紹了
前端学习(2306):react之组件使用之图片使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Home.js
import React, {Component,Fragment} from 'react'; import ImgA from "../assset/index.jpg" class Home extends Component {render() {return (<Fragment><div>你好我是組件{parseInt(Math.random()*10)}</div><div>你好我是組件2{parseInt(Math.random()*10)}<img src={ImgA} alt=""/></div></Fragment>);} }export default Home;?app.js
import React from 'react'; import logo from './logo.svg'; import './App.css'; import Home from './components/Home.js' function App() {return (<div className="App"><Home></Home></div>); }export default App;?
總結
以上是生活随笔為你收集整理的前端学习(2306):react之组件使用之图片使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 前端学习(2051)vue之电商管理系统
- 下一篇: 前端学习(2350):condition