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.
- Host: GitHub
- URL: https://github.com/timmikeladze/meteor-react-swipeable-views
- Owner: TimMikeladze
- Created: 2016-01-07T09:05:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T06:36:43.000Z (over 8 years ago)
- Last Synced: 2025-03-30T20:51:22.879Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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',
},
};
```