Skip to content

Instantly share code, notes, and snippets.

@mdshadman
Created October 21, 2019 13:25
Show Gist options
  • Save mdshadman/9b0056515c356be215765a6efd3a194d to your computer and use it in GitHub Desktop.
Save mdshadman/9b0056515c356be215765a6efd3a194d to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { View, Text } from 'react-native';
import { Container, Content, Header, Left, Icon, Button, Body, Right, Title } from 'native-base';
import Stories from '../../Components/Stories';
const InstaView = (props) => {
const { openDrawer } = props
return (
<Container>
<Header hasTabs>
<Left>
<Button icon onPress={openDrawer} transparent>
<Icon name='menu' />
</Button>
</Left>
<Body>
<Title> Instagram</Title>
</Body>
<Right />
</Header>
<Content>
<Stories />
</Content>
</Container>
)
}
export default InstaView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment