Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Latest commit

 

History

History

react-scroll

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

react-scroll

Build Status

React scroll compoment

Installation

npm install --save @wapps/react-scroll

How to use

import React from 'react';
import Scroll from '@wapps/react-scroll';

const App = messages => (
  <div style={{ overflow: 'scroll' }}>
    {messages.map((message, index) => (
      <Scroll key={index} behavior="smooth">
        {message}
      </Scroll>
    ))}
  </div>
);

export default App;

Live Demo

For a demo, check out https://hupe1980.github.io/wapps-components/

License

MIT