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

13 lines
382 B
JavaScript

import React, { useState } from 'react';
export default function CrashReactAppButton() {
const [buttonText, setButtonText] = useState('Crush The App');
return (
<button
style={{ background: 'red', color: 'white', border: '1px solid teal' }}
onClick={() => { setButtonText(undefined); }}
>
{`${buttonText} (${buttonText.length})`}
</button>
);
}