react-bsod-reporter
v1.0.0
Published
this just displays a replica of BSoD whenever a error happens. basically.
Downloads
84
Readme
React BSoD Reporter
A simple React component that displays a Blue Screen of Death (BSoD) replica whenever a critical error occurs in your React application. This serves as an error reporter, showing what and where the error came from.
Installation
You can install the package using npm or yarn:
npm install react-bsod-reporter
yarn add react-bsod-reporter
how to insert
import React from 'react';
import { ErrorBoundary } from 'react-bsod-reporter';
const App = () => {
return (
<ErrorBoundary>
{/* Your components go here */}
<YourComponent />
</ErrorBoundary>
);
};
export default App;
thas all