Skip to content

Instantly share code, notes, and snippets.

@damusnet
Created April 8, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damusnet/e9a28f91a3e4e4e6d9d3 to your computer and use it in GitHub Desktop.
Save damusnet/e9a28f91a3e4e4e6d9d3 to your computer and use it in GitHub Desktop.
'use strict';
import React from 'react';
import SwipeViews from 'react-swipe-views';
export default class App extends React.Component {
render() {
return (
<SwipeViews>
<div title="Tab 1">
Page 1
</div>
<div title="Tab 2">
Page 2
</div>
<div title="Tab 3">
Page 3
</div>
</SwipeViews>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment