mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
69 lines
1.1 KiB
TypeScript
69 lines
1.1 KiB
TypeScript
import { TUser } from '../globals/types';
|
|
|
|
export const sampleData: TUser[] = [
|
|
{
|
|
id: '123',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '0937425123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '456',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '231',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '241',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '512',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '524',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '125',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
{
|
|
id: '111',
|
|
name: 'Nezumi',
|
|
identifiedCode: '123',
|
|
phone: '123',
|
|
roomId: '246',
|
|
address: 'Da Nang',
|
|
},
|
|
];
|