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

24 lines
403 B
TypeScript

export interface FeedItem {
id: number;
url: string;
caption: string;
}
export const feedItemMocks: FeedItem[] = [
{
id: 0,
url: '/assets/mock/xander0.jpg',
caption: 'Such a cute pup'
},
{
id: 0,
url: '/assets/mock/xander1.jpg',
caption: 'Who\'s a good boy?'
},
{
id: 0,
url: '/assets/mock/xander2.jpg',
caption: 'Majestic.'
}
];