Created
October 21, 2019 13:25
-
-
Save mdshadman/9b0056515c356be215765a6efd3a194d to your computer and use it in GitHub Desktop.
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 characters
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