mirror of
https://github.com/zhigang1992/react-native-gifted-chat.git
synced 2026-01-12 22:50:22 +08:00
33 lines
760 B
JavaScript
33 lines
760 B
JavaScript
module.exports = [
|
|
{
|
|
_id: Math.round(Math.random() * 1000000),
|
|
text: 'Yes, and I use Gifted Chat!',
|
|
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
|
|
user: {
|
|
_id: 1,
|
|
name: 'Developer',
|
|
},
|
|
sent: true,
|
|
received: true,
|
|
// location: {
|
|
// latitude: 48.864601,
|
|
// longitude: 2.398704
|
|
// },
|
|
},
|
|
{
|
|
_id: Math.round(Math.random() * 1000000),
|
|
text: 'Are you building a chat app?',
|
|
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
|
|
user: {
|
|
_id: 2,
|
|
name: 'React Native',
|
|
},
|
|
},
|
|
{
|
|
_id: Math.round(Math.random() * 1000000),
|
|
text: "You are officially rocking GiftedChat.",
|
|
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
|
|
system: true,
|
|
},
|
|
];
|