openreplay/frontend/app/dev/components/InternalErrorButton.js
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

17 lines
301 B
JavaScript

import React from 'react';
function sendWrongEvent() {
const a = {};
a.a = a;
}
export default function InternalErrorButton() {
return (
<button
onClick={sendWrongEvent}
style={{ background: 'maroon', color: 'white' }}
>
Crash OpenReplay Tracker
</button>
);
}