ato-product-card
Version:
This is a test package for deployment on NPM
24 lines (22 loc) • 341 B
text/typescript
import { Product } from '../interfaces/interfaces'
export const products: Product[] = [
{
id: '1',
title: 'Coffee Mug - Card',
img: 'coffee-mug.png',
},
{
id: '2',
title: 'b',
img: 'coffee-mug2.png',
},
{
id: '3',
title: 'c',
},
{
id: '4',
title: 'd',
img: 'coffee-mug.png',
},
]