当前位置:   article > 正文

从0搭建一个react项目_从0搭建一个react醒目

从0搭建一个react醒目

搭建开发环境

npx create-react-app boss
cd boss
yarn start
  • 1
  • 2
  • 3

删除src文件下的文件,保留index.js并新建一个APP.js

App.js

import React from 'react'

class App extends React.Component{
	render () {
		return <h1>Hello, React!</h1>
	}
}

export default App
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

index.js

import React from 'react'
import ReactDOM from 'react-dom'

import App from './App.js'

ReactDOM.render( // 这里是ReactDOM.render,不是React.createElement()
	<App/>
	, document.getElementById('root')
)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在浏览器现在可以正常显示Hello, React!
在这里插入图片描述

添加路由

yarn add react-router-dom
  • 1

index.js

import React from 'react'
import ReactDOM from 'react-dom'
import {BrowserRouter, Switch, Route} from 'react-router-dom' // 添加这一行

import App from './App.js'

ReactDOM.render(
	// 添加浏览器路由,注意这里不是RouterBrowser
	// Switch只匹配到第一个path
	// exact完全匹配
	<BrowserRouter> 
		<Switch> 
			<Route path="/" exact component={App}></Route> 
		</Switch>
	</BrowserRouter>
	, document.getElementById('root')
)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

添加redux

yarn add redux
yard add react-redux
  • 1
  • 2

src目录下新建reducer.js

添加config.js

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/671244
推荐阅读
相关标签
  

闽ICP备14008679号