diff options
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; | 
