Replaced React.Fragment shorthands with elements

This commit is contained in:
ireic
2020-01-23 20:16:18 +01:00
parent fffb0fed4f
commit 5566618c47
17 changed files with 55 additions and 54 deletions

View File

@@ -1,4 +1,4 @@
import React from 'react';
import React, { Fragment } from 'react';
import PropTypes from 'prop-types';
import api from 'shared/utils/api';
@@ -55,7 +55,7 @@ const ProjectBoardIssueDetails = ({
};
return (
<>
<Fragment>
<TopActions>
<Type issue={issue} updateIssue={updateIssue} />
<TopActionsRight>
@@ -85,7 +85,7 @@ const ProjectBoardIssueDetails = ({
<Dates issue={issue} />
</Right>
</Content>
</>
</Fragment>
);
};