Created
April 8, 2015 13:39
-
-
Save damusnet/e9a28f91a3e4e4e6d9d3 to your computer and use it in GitHub Desktop.
Revisions
-
damusnet created this gist
Apr 8, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ '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> ); } }