Skip to content

Commit f9cf3ea

Browse files
committed
Format component code
1 parent c11de6a commit f9cf3ea

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

src/components/CostDisplay/CostDisplay.lazy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { lazy, Suspense } from 'react';
22

33
const LazyCostDisplay = lazy(() => import('./CostDisplay'));
44

5-
const CostDisplay = props => (
5+
const CostDisplay = (props) => (
66
<Suspense fallback={null}>
77
<LazyCostDisplay {...props} />
88
</Suspense>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.CostDisplay {}
1+
.CostDisplay {
2+
}

src/components/CostDisplay/CostDisplay.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import CostDisplay from './CostDisplay';
33

44
export default {
5-
title: "CostDisplay",
5+
title: 'CostDisplay',
66
};
77

88
export const Default = () => <CostDisplay />;

src/components/CostDisplay/CostDisplay.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ describe('<CostDisplay />', () => {
1111

1212
expect(CostDisplay).toBeInTheDocument();
1313
});
14-
});
14+
});

0 commit comments

Comments
 (0)