import { Box, Button, TextField, Typography } from '@mui/material'; interface AuthFormProps { config: { username: string; password: string; }; handleInputChange: (e: React.ChangeEvent) => void; onLogin: () => void; } const AuthForm = ({ config, handleInputChange, onLogin }: AuthFormProps) => { return ( Логин Пароль ); }; export default AuthForm;