Refactor Login component

Splits the Login component into smaller, more manageable parts and extracts related logic into hooks to improve code organization and readability.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 12:39:09 +00:00
parent 511a5bb2da
commit e687047401
8 changed files with 453 additions and 326 deletions

View File

@@ -1,11 +1,9 @@
// 메인 내보내기 파일
import { supabase, isValidUrl } from './client';
import { testSupabaseConnection } from './tests';
// Supabase 클라이언트 내보내기
export { supabase } from './client';
// 설정 관련 유틸리티 내보내기
export { configureSupabase } from './config';
// 테스트 도구 내보내기
export { testSupabaseLogin, testSupabaseConnection } from './tests';
export {
supabase,
isValidUrl,
testSupabaseConnection
};