import React, { FC } from "react"; import { InputField } from "./InputField"; import { PasswordField } from "./PasswordField"; import { Button } from "./Buttons/Button"; export const LogInForm: FC = () => { return (

Login

); };