Skip to content

Instantly share code, notes, and snippets.

@koss-lebedev
Created July 10, 2022 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koss-lebedev/bbd84a82031163fed8f7801b004bf817 to your computer and use it in GitHub Desktop.
Save koss-lebedev/bbd84a82031163fed8f7801b004bf817 to your computer and use it in GitHub Desktop.
import api from '~/common/api'
const ConnectedLoginForm = () => {
const handleSubmit = async (email, password) => {
await api.login(email, password)
}
return (
<LoginForm onSubmit={handleSubmit} />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment