Next.js template
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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;