diff --git a/src/components/Logout/Logout.tsx b/src/components/Logout/Logout.tsx index 28926c7..33909c4 100644 --- a/src/components/Logout/Logout.tsx +++ b/src/components/Logout/Logout.tsx @@ -1,6 +1,6 @@ -import Button from '../../components/Button' -import { clearUser } from '../../store/user/userSlice' import { useDispatch } from 'react-redux' +import { clearUser } from '../../store/user/userSlice' +import Button from '../Button' function Logout () { const dispatch = useDispatch()