`import EventForm from ‘@/components/shared/EventForm’
import { auth } from ‘@clerk/nextjs/server’
import React from ‘react’
const CreateEvent = () => {
const {sessionClaims} = auth();
return (
<>
Create Event
</>
)
}
export default CreateEvent`
I tried to add new event and use the client session id but the clerk its return error when I import the auth from @clerk/next