New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

container-carousel

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

container-carousel - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

package.json
{
"name": "container-carousel",
"author": "rioam2",
"version": "1.1.0",
"version": "1.1.1",
"homepage": "https://github.com/rioam2/container-carousel#readme",
"description": "A horizontal carousel container for react components",
"description": "A horizontal carousel container for react components with touchscreen swipe support as well as handlers for traditional desktop peripherals",
"license": "MIT",

@@ -8,0 +8,0 @@ "repository": {

@@ -1,1 +0,20 @@

# container-carousel
# 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:
```javascript
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>
);
};
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc