Skip to content

Commit 43ff69e

Browse files
committed
Appy eslint fixes
1 parent e1ae8e4 commit 43ff69e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

packages/module/src/DataView/DataView.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ export interface DataViewProps {
88

99
export const DataView: React.FunctionComponent<DataViewProps> = ({
1010
text = 'This is Data view'
11-
}: DataViewProps) => {
12-
13-
return (
14-
<Text>{text}</Text>
15-
);
16-
};
11+
}: DataViewProps) => (
12+
<Text>{text}</Text>
13+
);
1714

1815
export default DataView;

0 commit comments

Comments
 (0)