Move “export” before decorators

As this is what upstream does.

See also https://github.com/tc39/proposal-decorators/issues/69
This commit is contained in:
Thibaut Girka
2019-09-09 15:16:08 +02:00
committed by ThibG
parent 0014a32c19
commit f2b307af25
59 changed files with 118 additions and 118 deletions

View File

@@ -21,9 +21,9 @@ const mapDispatchToProps = dispatch => ({
onReset: () => dispatch(resetPinnedAccountsEditor()),
});
@connect(mapStateToProps, mapDispatchToProps)
export default @connect(mapStateToProps, mapDispatchToProps)
@injectIntl
export default class PinnedAccountsEditor extends ImmutablePureComponent {
class PinnedAccountsEditor extends ImmutablePureComponent {
static propTypes = {
onClose: PropTypes.func.isRequired,