Commit ef806d19 authored by ι™ˆεΈ…'s avatar ι™ˆεΈ…

style: change <> to React.Fragment

parent e7aba01f
...@@ -102,7 +102,7 @@ class Login extends Component { ...@@ -102,7 +102,7 @@ class Login extends Component {
<div className={classNames(className, styles.login)}> <div className={classNames(className, styles.login)}>
<Form onSubmit={this.handleSubmit}> <Form onSubmit={this.handleSubmit}>
{tabs.length ? ( {tabs.length ? (
<> <React.Fragment>
<Tabs <Tabs
animated={false} animated={false}
className={styles.tabs} className={styles.tabs}
...@@ -112,7 +112,7 @@ class Login extends Component { ...@@ -112,7 +112,7 @@ class Login extends Component {
{TabChildren} {TabChildren}
</Tabs> </Tabs>
{otherChildren} {otherChildren}
</> </React.Fragment>
) : ( ) : (
[...children] [...children]
)} )}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment