Skip to content

Instantly share code, notes, and snippets.

@jasonmerino
Created November 23, 2015 21:32
Show Gist options
  • Save jasonmerino/df6265a3f5bfeeda516e to your computer and use it in GitHub Desktop.
Save jasonmerino/df6265a3f5bfeeda516e to your computer and use it in GitHub Desktop.
pinner-basics-1.js
var React = require('react-native');
var {
View
} = React;
var Pinner = React.createClass({
render() {
return (
<View
style={{
position: 'absolute',
bottom: 0,
right: 0,
left: 0
}}
/>
);
}
});
module.exports = Pinner;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment