Animated swipe component for React
npm install panel-swiperA native styled panel swiper for React, animated with react-spring.
```
npm install --save panel-swiper
`jsx
import React from 'react';
import { Swiper, Panel } from 'panel-swiper';
function SwipeView() {
return (
);
}
`
With tabs:
`jsx
import React from 'react';
import { Swiper, Panel, SwiperTabContainer, SwiperTab } from 'panel-swiper';
function SwipeView() {
return (
);
}
``