15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
|
export const mockAbuseReports = [
|
||
|
{
|
||
|
category: 'spam',
|
||
|
updatedAt: '2022-12-07T06:45:39.977Z',
|
||
|
reporter: { name: 'Ms. Admin' },
|
||
|
reportedUser: { name: 'Mr. Abuser' },
|
||
|
},
|
||
|
{
|
||
|
category: 'phishing',
|
||
|
updatedAt: '2022-12-07T06:45:39.977Z',
|
||
|
reporter: { name: 'Ms. Reporter' },
|
||
|
reportedUser: { name: 'Mr. Phisher' },
|
||
|
},
|
||
|
];
|