Created
April 8, 2015 13:39
-
-
Save damusnet/e9a28f91a3e4e4e6d9d3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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