I am developing a web app where I need to pass session?.user?.email
from useSession()
in next-auth/react
to a sever side component where it carries out a fetch request to /api/users/email/
to find out if a user exists with that particular email address.
After reading the documentation, I realised that you are not supposed to use server components inside 'use client'
components where I have my useSession()
What is the best way to structure this?