openreplay/frontend/app/dev/components/EventErrorButton.js
2021-05-01 15:12:01 +05:30

12 lines
No EOL
295 B
JavaScript

import React from 'react';
export default function EventErrorButton() {
return (
<button
onClick={()=>{ thingThatShouldNotBeDefined.unexistingProperty['0']() }}
style={{background:'orange', color: 'white',border:"1px solid teal"}}
>
{"Make Event Error"}
</button>
);
}