diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-09-09 15:16:08 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-09-09 18:36:43 +0200 |
commit | f2b307af25ca53f062f1a9e50dc1724b7550fd71 (patch) | |
tree | 203bc24a72f1fae273ae805e99a99b791035eb16 /app/javascript/flavours/glitch/features/lists | |
parent | 0014a32c19bb6d3ab83aad65506f6b1cf66f93a9 (diff) |
Move “export” before decorators
As this is what upstream does. See also https://github.com/tc39/proposal-decorators/issues/69
Diffstat (limited to 'app/javascript/flavours/glitch/features/lists')
-rw-r--r-- | app/javascript/flavours/glitch/features/lists/components/new_list_form.js | 4 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/lists/index.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/javascript/flavours/glitch/features/lists/components/new_list_form.js b/app/javascript/flavours/glitch/features/lists/components/new_list_form.js index eb5b6188a..cc78d30b7 100644 --- a/app/javascript/flavours/glitch/features/lists/components/new_list_form.js +++ b/app/javascript/flavours/glitch/features/lists/components/new_list_form.js @@ -20,9 +20,9 @@ const mapDispatchToProps = dispatch => ({ onSubmit: () => dispatch(submitListEditor(true)), }); -@connect(mapStateToProps, mapDispatchToProps) +export default @connect(mapStateToProps, mapDispatchToProps) @injectIntl -export default class NewListForm extends React.PureComponent { +class NewListForm extends React.PureComponent { static propTypes = { value: PropTypes.string.isRequired, diff --git a/app/javascript/flavours/glitch/features/lists/index.js b/app/javascript/flavours/glitch/features/lists/index.js index ad5240bd5..79bf2e601 100644 --- a/app/javascript/flavours/glitch/features/lists/index.js +++ b/app/javascript/flavours/glitch/features/lists/index.js @@ -31,9 +31,9 @@ const mapStateToProps = state => ({ lists: getOrderedLists(state), }); -@connect(mapStateToProps) +export default @connect(mapStateToProps) @injectIntl -export default class Lists extends ImmutablePureComponent { +class Lists extends ImmutablePureComponent { static propTypes = { params: PropTypes.object.isRequired, |