Skip to content

Instantly share code, notes, and snippets.

@Mayankgupta688
Created February 5, 2020 13:02
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 Mayankgupta688/2f6b1e18af3c30abc8070753e1305ffe to your computer and use it in GitHub Desktop.
Save Mayankgupta688/2f6b1e18af3c30abc8070753e1305ffe to your computer and use it in GitHub Desktop.
import React from 'react';
export default class ErrorBoundaries extends React.Component {
componentDidCatch(error, info) {
console.log("Component Did Catch Error");
}
render() {
return (
<div>
<EmployeeDetails />
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment