App.tsx
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import React, { Suspense, useEffect } from 'react'
import { useRoutes, useNavigate } from 'react-router-dom'
import routes from './router'
import { useAppSelector, useAppDispatch, shallowEqualApp } from './store'
import { changeMessage } from './store/modules/counter'
import EventBus from '@/utils/events'
function App() {
const { counter } = useAppSelector((state) => state, shallowEqualApp)
const navigate = useNavigate()
const dispatch = useAppDispatch()
useEffect(() => {
EventBus.on('notLogin', function () {
navigate('/login')
})
}, [])
function changeMessageHandler() {
dispatch(changeMessage('hahah'))
}
const loginState: boolean = Boolean(localStorage.getItem('token'))
return (
<>
<Suspense fallback="loading...">
<div className="App">{useRoutes(routes)}</div>
</Suspense>
{/* <div>当前计数{counter.count}</div>
<div>message: {counter.message}</div>
<button onClick={changeMessageHandler}>修改message</button> */}
</>
)
}
export default App