1.1.1 • Published 7 years ago

container-carousel v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

container-carousel

This is the source code for the NPM package, 'container-carousel'. This NPM package contains a single exported component named Carousel, which renders a carousel - or horizontally spanning slider for content - to the virtual DOM. Children nodes to this component are rendered side-by-side and can be viewed by swiping between them via touch or mouse or using the arrow keys.

Usage:

import * as React from 'react';
import { Carousel } from 'container-carousel';

export const App = props => {
  return (
    <Carousel>
      <p>Slide 1</p>
      <p>Slide 2</p>
      <p>Slide 3</p>
    </Carousel>
  );
};
1.1.1

7 years ago

1.1.0

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago