Created
May 23, 2022 20:00
-
-
Save laxmariappan/ddeb729b0a3b298be0076100fb202225 to your computer and use it in GitHub Desktop.
ErrorBoundary for Remix app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function ErrorBoundary({ error }) { | |
console.log(error); | |
return ( | |
<Document> | |
<Layout> | |
<section className="p-6"> | |
<div className="relative items-center w-full px-5 py-12 mx-auto md:px-12 lg:px-24 max-w-7xl"> | |
<h1>There was an Error</h1> | |
<p>{error.message}</p> | |
</div> | |
</section> | |
</Layout> | |
</Document> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment