diff options
author | Vitaly Takmazov | 2018-08-28 16:06:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 1068ba623d2f8b6f7e89f5a4db2c9a54f20a26f0 (patch) | |
tree | 4b2402c1d718584449535acade8235a262c9a934 /vnext/src/components/Settings.js | |
parent | 7e08830d9ed55e77d7242106dcd1c3dd5bc4488b (diff) |
React.Fragment short syntax (requires babel 7)
Diffstat (limited to 'vnext/src/components/Settings.js')
-rw-r--r-- | vnext/src/components/Settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/components/Settings.js b/vnext/src/components/Settings.js index 2f03671f..44f02902 100644 --- a/vnext/src/components/Settings.js +++ b/vnext/src/components/Settings.js @@ -161,7 +161,7 @@ export default class Settings extends React.Component { </form> { me.emails && - <React.Fragment> + <> {/** email_off **/} <form> You can receive notifications to email:<br /> @@ -179,7 +179,7 @@ export default class Settings extends React.Component { {/** /email_off **/} <p> </p> <p>You can post to Juick via e-mail. Send your <u>plain text</u> messages to <span><a href="mailto:juick@juick.com">juick@juick.com</a></span>. You can attach one photo or video file.</p> - </React.Fragment> + </> } </fieldset> <fieldset> |