import React from 'react'; import { LoginContent } from '../features/auth'; interface LoginPageProps { onLogin: (email: string, password: string) => boolean; } export function LoginPage({ onLogin }: LoginPageProps) { return ; }