Created
March 5, 2020 17:29
-
-
Save bogoslavskiy/20ce4e32e54de1962128e4414f2e5cbd 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 from 'react' | |
import { View } from 'react-native'; | |
import { MainNavProps } from '../navigation/types/MainStackParams'; | |
export const ConversationScreen = ({}: MainNavProps<'Conversation'>) => { | |
return ( | |
<View /> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment