Skip to content

Instantly share code, notes, and snippets.

@bogoslavskiy
Created March 5, 2020 17:54
Show Gist options
  • Save bogoslavskiy/56f07d57a5058aceedb6c75186658920 to your computer and use it in GitHub Desktop.
Save bogoslavskiy/56f07d57a5058aceedb6c75186658920 to your computer and use it in GitHub Desktop.
import React from 'react'
import { View } from 'react-native';
import { gql } from '@apollo/client';
export const MessageItemFragment = gql`
fragment MessageItem on Message {
_id
sender_id
senderName
text
date
}
`;
interface MessageItemProps {
}
export const MessageItem: React.FC<MessageItemProps> = ({}) => (
<View />
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment