16 lines
No EOL
264 B
JavaScript
16 lines
No EOL
264 B
JavaScript
|
|
function sendWrongEvent() {
|
|
const a = {};
|
|
a.a = a;
|
|
}
|
|
|
|
export default function InternalErrorButton() {
|
|
return (
|
|
<button
|
|
onClick={sendWrongEvent}
|
|
style={{background:'maroon', color: 'white'}}
|
|
>
|
|
{"Crash OpenReplay Tracker"}
|
|
</button>
|
|
);
|
|
} |