mirror of
https://github.com/zhigang1992/react-native-gifted-chat.git
synced 2026-04-29 04:35:46 +08:00
21 lines
594 B
JavaScript
21 lines
594 B
JavaScript
module.exports = [
|
|
{
|
|
_id: Math.round(Math.random() * 1000000),
|
|
text: 'It uses the same design as React, letting you compose a rich mobile UI from declarative components https://facebook.github.io/react-native/',
|
|
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
|
|
user: {
|
|
_id: 1,
|
|
name: 'Developer',
|
|
},
|
|
},
|
|
{
|
|
_id: Math.round(Math.random() * 1000000),
|
|
text: 'React Native lets you build mobile apps using only JavaScript',
|
|
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
|
|
user: {
|
|
_id: 1,
|
|
name: 'Developer',
|
|
},
|
|
},
|
|
];
|