Skip to content

Instantly share code, notes, and snippets.

@the-teacher
Created April 26, 2019 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save the-teacher/8a70b2c75dc423eaf18a9b58b803ec3e to your computer and use it in GitHub Desktop.
Save the-teacher/8a70b2c75dc423eaf18a9b58b803ec3e to your computer and use it in GitHub Desktop.
ErrorArticle
const SystemError = ({ error }) => {
console.warn(error.name)
console.warn(error.message)
return (
<div>
<h3>Sorry!</h3>
<p>Something went wrong. Please try again later.</p>
</div>
)
}
@the-teacher
Copy link
Author

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment