import React from 'react'; import SignInForm from './SignInForm'; interface PropTypes { logIn: (name: string, password: string) => Promise; } const AuthPage: React.FC = ({ logIn }) => { return ; }; export default AuthPage;