Files
react-native-gifted-chat/example/data/old_messages.js
Devendra Singh Shekhawat a47640832d Unnecessary semicolon removed (#677)
This file was ending with 2 semicolons, this produces Unnecessary semicolon. By this update the file is error free.
2017-12-24 17:45:55 +01:00

28 lines
765 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"
}
},
{
_id: Math.round(Math.random() * 1000000),
text: "This is a system message.",
createdAt: new Date(Date.UTC(2016, 7, 30, 17, 20, 0)),
system: true
}
];