Blame view

src/api/notification.js 586 Bytes
93a68cfa1   Jatinder Singh   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  export default [
    {
      title: 'New user registered',
      color: 'light-green',
      icon: 'account_circle',
      timeLabel: 'Just now'
    },
    { divider: true, inset: true },
    {
      title: 'New order received',
      color: 'light-blue',
      icon: 'shopping_cart',
      timeLabel: '2 min ago'
    },
    { divider: true, inset: true },
    {
      title: 'New payment made',
      color: 'cyan',
      icon: 'payment',
      timeLabel: '24 min ago'
    },
    { divider: true, inset: true },
    {
      title: 'New message from Michael',
      color: 'red',
      icon: 'email',
      timeLabel: '1 hour ago'
    }
  ];