if-salas-web/src/screens/Home/index.js
2022-06-01 15:35:34 -03:00

15 lines
301 B
JavaScript

import { useAuthState } from '../../context/auth';
function Home() {
const { logout, isPending } = useAuthState();
return (
<div>
<h2>You're logged in!</h2>
<button onClick={logout}>Logout</button>
{isPending && <h1>Loading...</h1>}
</div>
);
}
export default Home;