Fix LoginForm and SignupForm imports in 06-auth.md (#1156)

This commit is contained in:
Phillip Cutter 2023-04-21 00:55:17 -07:00 committed by GitHub
parent 30078233f3
commit 860c470d03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ Great, Wasp now knows how to route these and where to find the pages. Now to the
```jsx title="src/client/LoginPage.jsx"
import { Link } from 'react-router-dom'
import LoginForm from '@wasp/auth/forms/Login'
import { LoginForm } from '@wasp/auth/forms/Login'
const LoginPage = () => {
return (
@ -117,7 +117,7 @@ The Signup page is very similar to the login one:
```jsx title="src/client/SignupPage.jsx"
import { Link } from 'react-router-dom'
import SignupForm from '@wasp/auth/forms/Signup'
import { SignupForm } from '@wasp/auth/forms/Signup'
const SignupPage = () => {
return (