A `<Marquee />` component for React.
npm install dynamic-marquee-reactA component for React.
Uses "dynamic-marquee" under the hood.
Features:
- You can change the rate on the fly.
- Direction can either be up/down or right/left.
- Width/height of items and container is allowed to change.

View the code in "demo".
```
npm install --save dynamic-marquee-react
`jsx
import React from 'react';
import { Marquee } from 'dynamic-marquee-react';
export default function MyMarquee() {
return (
);
}
`
There are also the following props:
- rate: pixels/s. _Default: -25_upDown
- : Switch the direction to up/down instead of left/right. If this is enabled make sure your container has a height set. _Default: false_startOnScreen
- : Start with the marquee full of items. _Default: false`_