Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created August 4, 2017 07:22
Show Gist options
  • Save rajatgeekyants/03c719c2ed0f025830c470cb83c527b2 to your computer and use it in GitHub Desktop.
Save rajatgeekyants/03c719c2ed0f025830c470cb83c527b2 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { Container, Header, Title, Button, Left, Right, Body, Icon } from 'native-base';
export default class HeaderExample extends Component {
render() {
return (
<Container>
<Header>
<Left>
<Button transparent>
<Icon name='menu' />
</Button>
</Left>
<Body>
<Title>Header</Title>
</Body>
<Right />
</Header>
</Container>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment