2023-07-13 20:25:53 -07:00
|
|
|
const medias = [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
type: 'book',
|
|
|
|
title: 'The Small Backs of Children',
|
|
|
|
name: 'Lidia Yuknavitch',
|
|
|
|
copies: 1,
|
|
|
|
checkedOut: 0,
|
|
|
|
holds: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
type: 'book',
|
|
|
|
title: 'Beauty Queens',
|
|
|
|
name: 'Libby Bray',
|
|
|
|
copies: 2,
|
|
|
|
checkedOut: 1,
|
|
|
|
holds: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
type: 'book',
|
|
|
|
title: 'Pride and Prejudice',
|
|
|
|
name: 'Jane Austen',
|
|
|
|
copies: 5,
|
|
|
|
checkedOut: 5,
|
|
|
|
holds: [1],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
type: 'book',
|
|
|
|
title: 'Audacious',
|
|
|
|
name: 'Gabrielle Prendergast',
|
|
|
|
copies: 1,
|
|
|
|
checkedOut: 1,
|
|
|
|
holds: [3, 7],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
type: 'film',
|
|
|
|
title: 'Itty Bitty Titty Committee',
|
|
|
|
name: 'Yaela Howard',
|
|
|
|
copies: 1,
|
|
|
|
checkedOut: 0,
|
|
|
|
holds: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 6,
|
|
|
|
type: 'film',
|
|
|
|
title: 'Sing!',
|
|
|
|
name: 'Tom Ford',
|
|
|
|
copies: 2,
|
|
|
|
checkedOut: 2,
|
|
|
|
holds: [2],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 7,
|
|
|
|
type: 'film',
|
|
|
|
title: 'Barbie',
|
|
|
|
name: 'Greta Greenwood',
|
|
|
|
copies: 0,
|
|
|
|
checkedOut: 0,
|
|
|
|
holds: [6, 3, 9],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 8,
|
|
|
|
type: 'album',
|
|
|
|
title: 'Fearless',
|
|
|
|
name: 'Taylor Swift',
|
|
|
|
copies: 2,
|
|
|
|
checkedOut: 1,
|
|
|
|
holds: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 9,
|
|
|
|
type: 'album',
|
|
|
|
title: 'Gag Order',
|
|
|
|
name: 'Kesha',
|
|
|
|
copies: 1,
|
|
|
|
checkedOut: 1,
|
|
|
|
holds: [5],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 10,
|
|
|
|
type: 'album',
|
|
|
|
title: 'Speak Now',
|
|
|
|
name: 'Taylor Swift',
|
|
|
|
copies: 3,
|
|
|
|
checkedOut: 1,
|
|
|
|
holds: [],
|
|
|
|
},
|
|
|
|
]
|
2023-07-13 17:39:39 -07:00
|
|
|
|
|
|
|
export default medias
|