aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Button.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-07-06 02:11:40 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commitea1b9039ae221355cfaabb16fc43dab5917bea56 (patch)
tree9e9c40a33cfcbd69062dae77a68964929f952368 /vnext/src/components/Button.js
parent91faf0911184bb430170d021195d008b977e0ac4 (diff)
Fix eslint warnings
Diffstat (limited to 'vnext/src/components/Button.js')
-rw-r--r--vnext/src/components/Button.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/components/Button.js b/vnext/src/components/Button.js
index 656c0426..11887d41 100644
--- a/vnext/src/components/Button.js
+++ b/vnext/src/components/Button.js
@@ -3,7 +3,7 @@ import React from 'react';
export default function Button(props) {
return (
<button style={buttonStyle} {...props} />
- )
+ );
}
const buttonStyle = {
@@ -15,4 +15,4 @@ const buttonStyle = {
display: 'inline-block',
margin: '5px',
padding: '2px 10px'
-} \ No newline at end of file
+};