Skip to content

Commit

Permalink
Fix login example (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrierscript authored May 18, 2022
1 parent e5ce23e commit 33f4550
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ First, create a `/login` page. Here we will render a form to get the email and p

```tsx
// app/routes/login.tsx
import { Form, ActionFunction, LoaderFunction, redirect } from "remix";
import { Form } from "@remix-run/react"
import { ActionFunction, LoaderFunction, redirect } from "@remix-run/node"
import { authenticator } from "~/auth.server";

// First we create our UI with the form doing a POST and the inputs with the
Expand Down

0 comments on commit 33f4550

Please sign in to comment.