--- title: subtitle: Neon Auth handler component for authentication routes enableTableOfContents: true tag: beta updatedOn: '2025-10-01T12:46:01.212Z' --- Renders the appropriate authentication or account-related component based on the current route. For detailed usage instructions, see the manual section of the [setup guide](/docs/neon-auth). ## Props - `app`: `StackServerApp` — The Neon Auth server application instance. - `routeProps`: `NextRouteProps` — The Next.js route props, usually the first argument of the page component (see below) - `fullPage`: `boolean` — Whether to render the component in full-page mode. - `componentProps`: `{ [K in keyof Components]?: Partial> }` — Props to pass to the rendered components. ## Example ```tsx title="app/handler/[...stack].tsx" import { StackHandler } from '@stackframe/stack'; import { stackServerApp } from '@/stack/server'; export default function Handler(props: { params: any; searchParams: any }) { return ( ); } ```