You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
456 B

import { Client } from '../types'
export const clients: Client[] = [
{
name: 'Elijah',
email: 'elijah@elijah.com',
phone: 4039876543,
has_photos: false,
},
{
name: 'Tanner',
email: 'tanner@tanner.com',
phone: 4031234567,
has_photos: true,
},
]
export const client: Client = clients[0]
export const session: { photos: string[] } = {
photos: ['/images/1.jpg', '/images/2.jpg', '/images/3.jpg', '/images/4.jpg'],
}