diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-28 12:41:35 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-28 12:41:35 +0300 |
commit | 6ffd9ba4fdb459eb2e425ba1bf873baf7576c3f9 (patch) | |
tree | c8c0072a5934e10e247b6899883a7a45f44b488b /src/components/SmartList | |
parent | f7488e93bc5a250ff8ebc2035d653d6cf3ed8c21 (diff) | |
download | chrono-cube-ui-6ffd9ba4fdb459eb2e425ba1bf873baf7576c3f9.tar.gz |
feat!: migrate to BENZIN library
Diffstat (limited to 'src/components/SmartList')
-rw-r--r-- | src/components/SmartList/SmartList.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/components/SmartList/SmartList.js b/src/components/SmartList/SmartList.js deleted file mode 100644 index b462c47..0000000 --- a/src/components/SmartList/SmartList.js +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; - -import { FixedSizeList } from 'react-window'; -import AutoSizer from 'react-virtualized-auto-sizer'; - - -const SmartList = ({ itemSize, itemCount, renderItem }) => { - - return ( - <div style={{ flex: '1 1 auto', overflow: 'hidden' }}> - <AutoSizer> - {({ width, height }) => ( - <FixedSizeList - height={height} - width={width} - itemSize={itemSize} - itemCount={itemCount} - > - {renderItem} - </FixedSizeList> - )} - </AutoSizer> - </div> - ); -}; - - -export default SmartList; |