Skip to content

Instantly share code, notes, and snippets.

@willjw3
Created April 6, 2021 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willjw3/4f75671e5cbdd44c0d884b32acfad5db to your computer and use it in GitHub Desktop.
Save willjw3/4f75671e5cbdd44c0d884b32acfad5db to your computer and use it in GitHub Desktop.
import { v4 as uuidv4 } from 'uuid';
export const users = [
{
id: uuidv4(),
name: 'Octavio Flores',
email: 'oflores@zcorp.com',
password: 'abc123'
},
{
id: uuidv4(),
name: 'Farah Bennis',
email: 'fbennis@zcorp.com',
password: 'bbc123'
},
{
id: uuidv4(),
name: 'Peter Quan',
email: 'pquan@zcorp.com',
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