aswi2022code-of-duty-gitlab/frontend/src/features/Home/Home.tsx @ e99d142e
1 |
import { Button } from '@mui/material' |
---|---|
2 |
import { Fragment } from 'react' |
3 |
import { useDispatch, useSelector } from 'react-redux' |
4 |
import { logout } from '../Auth/userSlice' |
5 |
import { RootState } from '../redux/store' |
6 |
|
7 |
const Home = () => { |
8 |
return ( |
9 |
<Fragment> |
10 |
<h1>Home</h1> |
11 |
</Fragment> |
12 |
)
|
13 |
}
|
14 |
|
15 |
export default Home |