From d514733f1302a3529a25cb8ffe933c566bbc287b Mon Sep 17 00:00:00 2001 From: Francis Udeji Date: Thu, 3 Sep 2020 11:45:40 +0100 Subject: [PATCH] Remove arrow syntax from examples on pages docs --- www/docs/configuration/pages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/docs/configuration/pages.md b/www/docs/configuration/pages.md index 20024e9850..16bfbedd7c 100644 --- a/www/docs/configuration/pages.md +++ b/www/docs/configuration/pages.md @@ -58,7 +58,7 @@ If you create a custom sign in form for email sign in, you will need to submit b import React from 'react' import { csrfToken } from 'next-auth/client' -export default function SignIn({ csrfToken }) => { +export default function SignIn({ csrfToken }) { return (
@@ -92,7 +92,7 @@ If you create a sign in form for credentials based authentication, you will need import React from 'react' import { csrfToken } from 'next-auth/client' -export default function SignIn({ csrfToken }) => { +export default function SignIn({ csrfToken }) { return (