import { useLoaderData } from "@remix-run/react"; export async function loader({ context, }: { context: RequestContext; }): Promise { return context.env.TURNSTILE_SITEKEY; } export default function () { return ( <>
()} >
); }