Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 243B

123456789101112131415
  1. import { signOut } from 'next-auth/react';
  2. const Home = () => {
  3. function logoutHandler() {
  4. signOut();
  5. }
  6. return (
  7. <>
  8. <h1>Home</h1>
  9. <button onClick={logoutHandler}>Logout</button>
  10. </>
  11. );
  12. };
  13. export default Home;