aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Button.js
diff options
context:
space:
mode:
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
+};