From b6476078a508aa02286f46c21d06441ceedc4b7e Mon Sep 17 00:00:00 2001 From: Bochkovskyi Date: Fri, 5 Jan 2024 16:21:04 +0200 Subject: [PATCH] rename AuthForm to FormAuth --- src/app/auth/page.tsx | 4 ++-- src/components/Pages/Auth/{AuthForm.tsx => FormAuth.tsx} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/components/Pages/Auth/{AuthForm.tsx => FormAuth.tsx} (100%) diff --git a/src/app/auth/page.tsx b/src/app/auth/page.tsx index b71b223..0eea16b 100644 --- a/src/app/auth/page.tsx +++ b/src/app/auth/page.tsx @@ -1,4 +1,4 @@ -import AuthForm from '@/components/Pages/Auth/AuthForm' +import FormAuth from '@/components/Pages/Auth/FormAuth' import ImageCard from '@/components/Pages/Auth/ImageCard' import Image from 'next/image' @@ -11,7 +11,7 @@ export default function Auth() {

Authentication

- +
diff --git a/src/components/Pages/Auth/AuthForm.tsx b/src/components/Pages/Auth/FormAuth.tsx similarity index 100% rename from src/components/Pages/Auth/AuthForm.tsx rename to src/components/Pages/Auth/FormAuth.tsx