Created
April 6, 2021 03:36
-
-
Save willjw3/4f75671e5cbdd44c0d884b32acfad5db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { v4 as uuidv4 } from 'uuid'; | |
export const users = [ | |
{ | |
id: uuidv4(), | |
name: 'Octavio Flores', | |
email: '[email protected]', | |
password: 'abc123' | |
}, | |
{ | |
id: uuidv4(), | |
name: 'Farah Bennis', | |
email: '[email protected]', | |
password: 'bbc123' | |
}, | |
{ | |
id: uuidv4(), | |
name: 'Peter Quan', | |
email: '[email protected]', | |
password: 'cbc123' | |
}, | |
] | |
export const projects = [ | |
{ | |
title: 'Site Upgrade - Login Form', | |
status: 'active' | |
}, | |
{ | |
title: 'Site Upgrade - User Dashboard', | |
status: 'active' | |
}, | |
{ | |
title: 'Server Migration', | |
status: 'completed' | |
}, | |
] | |
export const assignments = [ | |
{ | |
ProjectId: 1, | |
UserId: 'add id from db' | |
}, | |
{ | |
ProjectId: 2, | |
UserId: 'add id from db' | |
}, | |
{ | |
ProjectId: 1, | |
UserId: 'add id from db' | |
}, | |
] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment