1.0.0 • Published 1 year ago

reactjs-custom-scrollbar v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

reactjs-custom-scrollbar

npm version npm npm All Contributors

Installation

NPM

To install the latest stable version:

npm install --save reactjs-custom-scrollbar

Basic usage:

import React, { Component } from 'react';
import Sticky from 'reactjs-custom-scrollbar';

const array = [1, 2, 3, 4, 5, 6, 7, 8];
const App = () => {
  return (
    <div>
      <Scrollbar style={{ height: '100px', width: '200px' }} autoHide>
        <div>
          {array.map(a => (
            <div
              key={a}
              style={{
                width: '100px',
                height: '100px',
                background: 'yellow',
                display: 'flex',
                flex: 'none',
              }}
            >
              {a}
            </div>
          ))}
        </div>
      </Scrollbar>
    </div>
  );
};
}
1.0.0

1 year ago