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:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user