next.js/packages/next/src/client/components/builtin/unauthorized.tsx
unauthorized.tsx11 lines254 B
import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'

export default function Unauthorized() {
  return (
    <HTTPAccessErrorFallback
      status={401}
      message="You're not authorized to access this page."
    />
  )
}
Quest for Codev2.0.0
/
SIGN IN