/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from '@keystone-ui/core' import { Button } from '@keystone-ui/button' import { type ReactNode, useEffect } from 'react' import { useMutation, gql } from '../apollo' const END_SESSION = gql` mutation EndSession { endSession } ` function SignoutButton ({ children }: { children?: ReactNode }) { const [endSession, { loading, data }] = useMutation(END_SESSION) useEffect(() => { if (data?.endSession) { window.location.reload() } }, [data]) return ( ) } export { SignoutButton }