Skip to content

Commit

Permalink
Fix more eslint errors in component and container templates
Browse files Browse the repository at this point in the history
  • Loading branch information
mwolson committed Feb 15, 2017
1 parent ffbfef5 commit f821034
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/generators/component/styles.js.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import styled from 'styled-components';

// eslint-disable-next-line import/prefer-default-export
export const StyledWrapper = styled.section`
margin: 10px;
`;
2 changes: 1 addition & 1 deletion config/generators/container/actions.js.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const loadDataSuccess = () => ({
type: T.LOAD_DATA_SUCCESS,
});

export const loadDataFailure = (error) => ({
export const loadDataFailure = error => ({
type: T.LOAD_DATA_FAILURE,
error,
});
Expand Down
1 change: 1 addition & 0 deletions config/generators/container/styles.js.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import styled from 'styled-components';

// eslint-disable-next-line import/prefer-default-export
export const StyledWrapper = styled.section`
margin: 10px;
`;

0 comments on commit f821034

Please sign in to comment.