page.tsx 329 B

12345678910111213141516171819
  1. 'use client';
  2. import { useEffect } from 'react';
  3. import useAuth from '@/hooks/useAuth';
  4. export default function Page()
  5. {
  6. const { login } = useAuth();
  7. useEffect(() => {
  8. login(true);
  9. }, []);
  10. return (
  11. <div className="flex items-center justify-center min-h-screen">
  12. <p>Google 로그인 처리 중...</p>
  13. </div>
  14. );
  15. }