Skip to content

Instantly share code, notes, and snippets.

@SFantasy
Last active August 29, 2015 14:23
Show Gist options
  • Save SFantasy/500fdbfd5ab84eb22c2a to your computer and use it in GitHub Desktop.
Save SFantasy/500fdbfd5ab84eb22c2a to your computer and use it in GitHub Desktop.
React TabBarIOS
var App = React.createClass({
render: function() {
return (
<TabBarIOS>
<TabBarIOS.Item title="React Native" selected={true}>
</TabBarIOS.Item>
<TabBarIOS.Item title="Hello World" selected={true}>
</TabBarIOS.Item>
</TabBarIOS>
);
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment