12 lines
No EOL
295 B
JavaScript
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>
|
|
);
|
|
} |