An open API service indexing awesome lists of open source software.

https://github.com/timmikeladze/meteor-react-swipeable-views

Exposes the https://github.com/oliviertassinari/react-swipeable-views/ React component to Meteor.
https://github.com/timmikeladze/meteor-react-swipeable-views

Last synced: over 1 year ago
JSON representation

Exposes the https://github.com/oliviertassinari/react-swipeable-views/ React component to Meteor.

Awesome Lists containing this project

README

          

# Install

`meteor add tmikeladze:react-swipeable-views`

This package exposes the [react-swipeable-views](https://github.com/oliviertassinari/react-swipeable-views/) React component to Meteor.

## Usage

`meteor add react`

```js
const MyComponent = React.createClass({
render() {
return (


slide n°1


slide n°2


slide n°3


);
},
});

const styles = {
slide: {
padding: 15,
minHeight: 100,
color: '#fff',
},
slide1: {
background: '#FEA900',
},
slide2: {
background: '#B3DC4A',
},
slide3: {
background: '#6AC0FF',
},
};
```