Skip to content

Instantly share code, notes, and snippets.

@devika525
devika525 / client-src-components-LoginButton.tsx
Created May 5, 2025 10:00
probelm with firebase authentication
import React from 'react';
import { Button } from "@/components/ui/button";
import { useAuth } from '../hooks/use-auth';
export function LoginButton() {
const { isAuthenticated, user, logout } = useAuth();
const handleLogin = () => {
window.location.href = '/api/login';
};