UNPKG

@okta-dfuhriman/okta-auth-js

Version:
10 lines (7 loc) 229 B
import { useIdxTransaction } from '../contexts'; export default function ErroPage() { const { transaction: { error } } = useIdxTransaction(); return (<div>{error.message || JSON.stringify(error, null, 4)}</div>); }