aboutsummaryrefslogtreecommitdiff
path: root/src/lib/SmartList
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-04-18 20:26:32 +0300
committereug-vs <eug-vs@keemail.me>2020-04-18 20:26:32 +0300
commit2c5fa193541eb8b74974731d01312f73951bca17 (patch)
tree4cbc833a14487543d9ef38e66f6028d82f3978af /src/lib/SmartList
parent9941754be106accd5ea8ce4b6f8229dd6f4afc9b (diff)
downloadreact-benzin-2c5fa193541eb8b74974731d01312f73951bca17.tar.gz
style: correct some errors with eslint --fix
Diffstat (limited to 'src/lib/SmartList')
-rw-r--r--src/lib/SmartList/SmartList.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/SmartList/SmartList.tsx b/src/lib/SmartList/SmartList.tsx
index 22cd3b2..c86c127 100644
--- a/src/lib/SmartList/SmartList.tsx
+++ b/src/lib/SmartList/SmartList.tsx
@@ -21,8 +21,7 @@ interface Size {
const SmartList: React.FC<PropTypes> = ({ itemSize, itemCount, renderItem }) => {
-
- const ResizedList: React.FC<Size> = ({ width, height}) => (
+ const ResizedList: React.FC<Size> = ({ width, height }) => (
<FixedSizeList
height={height}
width={width}