import { Form } from '@remix-run/react'; import type { ActionArgs } from '@remix-run/server-runtime'; export async function action({ request }: ActionArgs) { throw new Error('Sentry Error from action'); } export default function ResetPasswordPage() { return (
); }